govuk_tech_docs 3.4.0 → 3.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/assets/stylesheets/_govuk_tech_docs.scss +13 -0
- data/lib/govuk_tech_docs/version.rb +1 -1
- data/lib/source/favicon.ico +0 -0
- data/lib/source/layouts/_header.erb +13 -15
- data/node_modules/govuk-frontend/govuk/all-ie8.scss +8 -0
- data/node_modules/govuk-frontend/govuk/all.js +4918 -3796
- data/node_modules/govuk-frontend/govuk/common/closest-attribute-value.js +54 -49
- data/node_modules/govuk-frontend/govuk/common/govuk-frontend-version.js +17 -0
- data/node_modules/govuk-frontend/govuk/common/index.js +172 -152
- data/node_modules/govuk-frontend/govuk/common/normalise-dataset.js +334 -321
- data/node_modules/govuk-frontend/govuk/common.js +171 -151
- data/node_modules/govuk-frontend/govuk/components/_all.scss +3 -2
- data/node_modules/govuk-frontend/govuk/components/accordion/_index.scss +26 -7
- data/node_modules/govuk-frontend/govuk/components/accordion/accordion.js +2203 -1650
- data/node_modules/govuk-frontend/govuk/components/back-link/_index.scss +24 -16
- data/node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss +34 -11
- data/node_modules/govuk-frontend/govuk/components/button/_index.scss +49 -9
- data/node_modules/govuk-frontend/govuk/components/button/button.js +961 -916
- data/node_modules/govuk-frontend/govuk/components/character-count/character-count.js +2142 -2038
- data/node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss +6 -6
- data/node_modules/govuk-frontend/govuk/components/checkboxes/checkboxes.js +1204 -1145
- data/node_modules/govuk-frontend/govuk/components/details/details.js +826 -799
- data/node_modules/govuk-frontend/govuk/components/error-summary/error-summary.js +1097 -1044
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/_exit-this-page.scss +2 -0
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/_index.scss +97 -0
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/exit-this-page.js +2120 -0
- data/node_modules/govuk-frontend/govuk/components/file-upload/_index.scss +6 -1
- data/node_modules/govuk-frontend/govuk/components/footer/_index.scss +0 -7
- data/node_modules/govuk-frontend/govuk/components/header/_index.scss +6 -0
- data/node_modules/govuk-frontend/govuk/components/header/header.js +683 -1003
- data/node_modules/govuk-frontend/govuk/components/input/_index.scss +15 -3
- data/node_modules/govuk-frontend/govuk/components/notification-banner/notification-banner.js +786 -751
- data/node_modules/govuk-frontend/govuk/components/radios/_index.scss +5 -5
- data/node_modules/govuk-frontend/govuk/components/radios/radios.js +1151 -1105
- data/node_modules/govuk-frontend/govuk/components/select/_index.scss +7 -1
- data/node_modules/govuk-frontend/govuk/components/skip-link/skip-link.js +1045 -1014
- data/node_modules/govuk-frontend/govuk/components/summary-list/_index.scss +107 -0
- data/node_modules/govuk-frontend/govuk/components/tabs/tabs.js +1514 -1268
- data/node_modules/govuk-frontend/govuk/components/tag/_index.scss +18 -18
- data/node_modules/govuk-frontend/govuk/components/textarea/_index.scss +8 -1
- data/node_modules/govuk-frontend/govuk/core/_all.scss +1 -0
- data/node_modules/govuk-frontend/govuk/core/_govuk-frontend-version.scss +5 -0
- data/node_modules/govuk-frontend/govuk/helpers/_colour.scss +5 -2
- data/node_modules/govuk-frontend/govuk/helpers/_focused.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_font-faces.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_visually-hidden.scss +12 -0
- data/node_modules/govuk-frontend/govuk/i18n.js +371 -364
- data/node_modules/govuk-frontend/govuk/objects/_template.scss +20 -0
- data/node_modules/govuk-frontend/govuk/objects/_width-container.scss +1 -1
- data/node_modules/govuk-frontend/govuk/settings/_colours-organisations.scss +4 -0
- data/node_modules/govuk-frontend/govuk/settings/_ie8.scss +16 -0
- data/node_modules/govuk-frontend/govuk/settings/_links.scss +5 -1
- data/node_modules/govuk-frontend/govuk/settings/_measurements.scss +5 -5
- data/node_modules/govuk-frontend/govuk/tools/_ie8.scss +38 -2
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/DOMTokenList.js +243 -241
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Date/now.js +14 -12
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Document.js +18 -16
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/classList.js +553 -545
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/closest.js +40 -36
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/dataset.js +257 -250
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/matches.js +22 -20
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/nextElementSibling.js +204 -197
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/previousElementSibling.js +204 -197
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element.js +109 -105
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Event.js +407 -399
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Function/prototype/bind.js +242 -238
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Object/defineProperty.js +73 -71
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/String/prototype/trim.js +15 -13
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Window.js +18 -16
- data/node_modules/govuk-frontend/govuk-prototype-kit/init.js +1 -0
- data/package-lock.json +7 -7
- data/package.json +1 -1
- metadata +8 -3
@@ -1,1176 +1,1222 @@
|
|
1
1
|
(function (global, factory) {
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
3
|
+
typeof define === 'function' && define.amd ? define('GOVUKFrontend.Radios', factory) :
|
4
|
+
(global.GOVUKFrontend = global.GOVUKFrontend || {}, global.GOVUKFrontend.Radios = factory());
|
5
5
|
}(this, (function () { 'use strict';
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
}
|
64
|
-
Object.__defineGetter__.call(object, propertyString, descriptor.get);
|
65
|
-
} else {
|
66
|
-
object[propertyString] = descriptor.value;
|
67
|
-
}
|
68
|
-
|
69
|
-
// handle descriptor.set
|
70
|
-
if (setterType) {
|
71
|
-
if (setterType !== 'function') {
|
72
|
-
throw new TypeError('Setter must be a function');
|
73
|
-
}
|
74
|
-
if (!supportsAccessors) {
|
75
|
-
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
76
|
-
}
|
77
|
-
if (hasValueOrWritable) {
|
78
|
-
throw new TypeError(ERR_VALUE_ACCESSORS);
|
79
|
-
}
|
80
|
-
Object.__defineSetter__.call(object, propertyString, descriptor.set);
|
81
|
-
}
|
82
|
-
|
83
|
-
// OK to define value unconditionally - if a getter has been specified as well, an error would be thrown above
|
84
|
-
if ('value' in descriptor) {
|
85
|
-
object[propertyString] = descriptor.value;
|
86
|
-
}
|
87
|
-
|
88
|
-
return object;
|
89
|
-
};
|
90
|
-
}(Object.defineProperty));
|
91
|
-
})
|
92
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
93
|
-
|
94
|
-
(function(undefined) {
|
95
|
-
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Function/prototype/bind/detect.js
|
96
|
-
var detect = 'bind' in Function.prototype;
|
7
|
+
/**
|
8
|
+
* Common helpers which do not require polyfill.
|
9
|
+
*
|
10
|
+
* IMPORTANT: If a helper require a polyfill, please isolate it in its own module
|
11
|
+
* so that the polyfill can be properly tree-shaken and does not burden
|
12
|
+
* the components that do not need that helper
|
13
|
+
*
|
14
|
+
* @module common/index
|
15
|
+
*/
|
16
|
+
|
17
|
+
/**
|
18
|
+
* TODO: Ideally this would be a NodeList.prototype.forEach polyfill
|
19
|
+
* This seems to fail in IE8, requires more investigation.
|
20
|
+
* See: https://github.com/imagitama/nodelist-foreach-polyfill
|
21
|
+
*
|
22
|
+
* @deprecated Will be made private in v5.0
|
23
|
+
* @template {Node} ElementType
|
24
|
+
* @param {NodeListOf<ElementType>} nodes - NodeList from querySelectorAll()
|
25
|
+
* @param {nodeListIterator<ElementType>} callback - Callback function to run for each node
|
26
|
+
* @returns {void}
|
27
|
+
*/
|
28
|
+
function nodeListForEach (nodes, callback) {
|
29
|
+
if (window.NodeList.prototype.forEach) {
|
30
|
+
return nodes.forEach(callback)
|
31
|
+
}
|
32
|
+
for (var i = 0; i < nodes.length; i++) {
|
33
|
+
callback.call(window, nodes[i], i, nodes);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
/**
|
38
|
+
* @template {Node} ElementType
|
39
|
+
* @callback nodeListIterator
|
40
|
+
* @param {ElementType} value - The current node being iterated on
|
41
|
+
* @param {number} index - The current index in the iteration
|
42
|
+
* @param {NodeListOf<ElementType>} nodes - NodeList from querySelectorAll()
|
43
|
+
* @returns {void}
|
44
|
+
*/
|
45
|
+
|
46
|
+
// @ts-nocheck
|
47
|
+
(function (undefined) {
|
48
|
+
|
49
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Object/defineProperty/detect.js
|
50
|
+
var detect = (
|
51
|
+
// In IE8, defineProperty could only act on DOM elements, so full support
|
52
|
+
// for the feature requires the ability to set a property on an arbitrary object
|
53
|
+
'defineProperty' in Object && (function() {
|
54
|
+
try {
|
55
|
+
var a = {};
|
56
|
+
Object.defineProperty(a, 'test', {value:42});
|
57
|
+
return true;
|
58
|
+
} catch(e) {
|
59
|
+
return false
|
60
|
+
}
|
61
|
+
}())
|
62
|
+
);
|
97
63
|
|
98
64
|
if (detect) return
|
99
65
|
|
100
|
-
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
66
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Object.defineProperty&flags=always
|
67
|
+
(function (nativeDefineProperty) {
|
68
|
+
|
69
|
+
var supportsAccessors = Object.prototype.hasOwnProperty('__defineGetter__');
|
70
|
+
var ERR_ACCESSORS_NOT_SUPPORTED = 'Getters & setters cannot be defined on this javascript engine';
|
71
|
+
var ERR_VALUE_ACCESSORS = 'A property cannot both have accessors and be writable or have a value';
|
72
|
+
|
73
|
+
Object.defineProperty = function defineProperty(object, property, descriptor) {
|
74
|
+
|
75
|
+
// Where native support exists, assume it
|
76
|
+
if (nativeDefineProperty && (object === window || object === document || object === Element.prototype || object instanceof Element)) {
|
77
|
+
return nativeDefineProperty(object, property, descriptor);
|
78
|
+
}
|
79
|
+
|
80
|
+
if (object === null || !(object instanceof Object || typeof object === 'object')) {
|
81
|
+
throw new TypeError('Object.defineProperty called on non-object');
|
82
|
+
}
|
83
|
+
|
84
|
+
if (!(descriptor instanceof Object)) {
|
85
|
+
throw new TypeError('Property description must be an object');
|
86
|
+
}
|
87
|
+
|
88
|
+
var propertyString = String(property);
|
89
|
+
var hasValueOrWritable = 'value' in descriptor || 'writable' in descriptor;
|
90
|
+
var getterType = 'get' in descriptor && typeof descriptor.get;
|
91
|
+
var setterType = 'set' in descriptor && typeof descriptor.set;
|
92
|
+
|
93
|
+
// handle descriptor.get
|
94
|
+
if (getterType) {
|
95
|
+
if (getterType !== 'function') {
|
96
|
+
throw new TypeError('Getter must be a function');
|
97
|
+
}
|
98
|
+
if (!supportsAccessors) {
|
99
|
+
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
100
|
+
}
|
101
|
+
if (hasValueOrWritable) {
|
102
|
+
throw new TypeError(ERR_VALUE_ACCESSORS);
|
103
|
+
}
|
104
|
+
Object.__defineGetter__.call(object, propertyString, descriptor.get);
|
105
|
+
} else {
|
106
|
+
object[propertyString] = descriptor.value;
|
107
|
+
}
|
108
|
+
|
109
|
+
// handle descriptor.set
|
110
|
+
if (setterType) {
|
111
|
+
if (setterType !== 'function') {
|
112
|
+
throw new TypeError('Setter must be a function');
|
113
|
+
}
|
114
|
+
if (!supportsAccessors) {
|
115
|
+
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
116
|
+
}
|
117
|
+
if (hasValueOrWritable) {
|
118
|
+
throw new TypeError(ERR_VALUE_ACCESSORS);
|
119
|
+
}
|
120
|
+
Object.__defineSetter__.call(object, propertyString, descriptor.set);
|
121
|
+
}
|
122
|
+
|
123
|
+
// OK to define value unconditionally - if a getter has been specified as well, an error would be thrown above
|
124
|
+
if ('value' in descriptor) {
|
125
|
+
object[propertyString] = descriptor.value;
|
126
|
+
}
|
127
|
+
|
128
|
+
return object;
|
129
|
+
};
|
130
|
+
}(Object.defineProperty));
|
131
|
+
})
|
132
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
133
|
+
|
134
|
+
// @ts-nocheck
|
135
|
+
(function (undefined) {
|
136
|
+
|
137
|
+
// Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-service/master/packages/polyfill-library/polyfills/DOMTokenList/detect.js
|
138
|
+
var detect = (
|
139
|
+
'DOMTokenList' in this && (function (x) {
|
140
|
+
return 'classList' in x ? !x.classList.toggle('x', false) && !x.className : true;
|
141
|
+
})(document.createElement('x'))
|
142
|
+
);
|
143
|
+
|
144
|
+
if (detect) return
|
145
|
+
|
146
|
+
// Polyfill from https://raw.githubusercontent.com/Financial-Times/polyfill-service/master/packages/polyfill-library/polyfills/DOMTokenList/polyfill.js
|
147
|
+
(function (global) {
|
148
|
+
var nativeImpl = "DOMTokenList" in global && global.DOMTokenList;
|
149
|
+
|
150
|
+
if (
|
151
|
+
!nativeImpl ||
|
152
|
+
(
|
153
|
+
!!document.createElementNS &&
|
154
|
+
!!document.createElementNS('http://www.w3.org/2000/svg', 'svg') &&
|
155
|
+
!(document.createElementNS("http://www.w3.org/2000/svg", "svg").classList instanceof DOMTokenList)
|
156
|
+
)
|
157
|
+
) {
|
158
|
+
global.DOMTokenList = (function() { // eslint-disable-line no-unused-vars
|
159
|
+
var dpSupport = true;
|
160
|
+
var defineGetter = function (object, name, fn, configurable) {
|
161
|
+
if (Object.defineProperty)
|
162
|
+
Object.defineProperty(object, name, {
|
163
|
+
configurable: false === dpSupport ? true : !!configurable,
|
164
|
+
get: fn
|
165
|
+
});
|
166
|
+
|
167
|
+
else object.__defineGetter__(name, fn);
|
168
|
+
};
|
192
169
|
|
193
|
-
|
170
|
+
/** Ensure the browser allows Object.defineProperty to be used on native JavaScript objects. */
|
171
|
+
try {
|
172
|
+
defineGetter({}, "support");
|
173
|
+
}
|
174
|
+
catch (e) {
|
175
|
+
dpSupport = false;
|
176
|
+
}
|
177
|
+
|
178
|
+
|
179
|
+
var _DOMTokenList = function (el, prop) {
|
180
|
+
var that = this;
|
181
|
+
var tokens = [];
|
182
|
+
var tokenMap = {};
|
183
|
+
var length = 0;
|
184
|
+
var maxLength = 0;
|
185
|
+
var addIndexGetter = function (i) {
|
186
|
+
defineGetter(that, i, function () {
|
187
|
+
preop();
|
188
|
+
return tokens[i];
|
189
|
+
}, false);
|
194
190
|
|
195
|
-
|
196
|
-
|
197
|
-
// b. Set the length own property of F to either 0 or L, whichever is
|
198
|
-
// larger.
|
199
|
-
// 16. Else set the length own property of F to 0.
|
200
|
-
|
201
|
-
var boundLength = max(0, target.length - args.length);
|
202
|
-
|
203
|
-
// 17. Set the attributes of the length own property of F to the values
|
204
|
-
// specified in 15.3.5.1.
|
205
|
-
var boundArgs = [];
|
206
|
-
for (var i = 0; i < boundLength; i++) {
|
207
|
-
array_push.call(boundArgs, '$' + i);
|
208
|
-
}
|
209
|
-
|
210
|
-
// XXX Build a dynamic function with desired amount of arguments is the only
|
211
|
-
// way to set the length property of a function.
|
212
|
-
// In environments where Content Security Policies enabled (Chrome extensions,
|
213
|
-
// for ex.) all use of eval or Function costructor throws an exception.
|
214
|
-
// However in all of these environments Function.prototype.bind exists
|
215
|
-
// and so this code will never be executed.
|
216
|
-
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this, arguments); }')(binder);
|
217
|
-
|
218
|
-
if (target.prototype) {
|
219
|
-
Empty.prototype = target.prototype;
|
220
|
-
bound.prototype = new Empty();
|
221
|
-
// Clean up dangling references.
|
222
|
-
Empty.prototype = null;
|
223
|
-
}
|
224
|
-
|
225
|
-
// TODO
|
226
|
-
// 18. Set the [[Extensible]] internal property of F to true.
|
227
|
-
|
228
|
-
// TODO
|
229
|
-
// 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).
|
230
|
-
// 20. Call the [[DefineOwnProperty]] internal method of F with
|
231
|
-
// arguments "caller", PropertyDescriptor {[[Get]]: thrower, [[Set]]:
|
232
|
-
// thrower, [[Enumerable]]: false, [[Configurable]]: false}, and
|
233
|
-
// false.
|
234
|
-
// 21. Call the [[DefineOwnProperty]] internal method of F with
|
235
|
-
// arguments "arguments", PropertyDescriptor {[[Get]]: thrower,
|
236
|
-
// [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},
|
237
|
-
// and false.
|
238
|
-
|
239
|
-
// TODO
|
240
|
-
// NOTE Function objects created using Function.prototype.bind do not
|
241
|
-
// have a prototype property or the [[Code]], [[FormalParameters]], and
|
242
|
-
// [[Scope]] internal properties.
|
243
|
-
// XXX can't delete prototype in pure-js.
|
244
|
-
|
245
|
-
// 22. Return F.
|
246
|
-
return bound;
|
247
|
-
}
|
248
|
-
});
|
249
|
-
})
|
250
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
191
|
+
};
|
192
|
+
var reindex = function () {
|
251
193
|
|
252
|
-
|
194
|
+
/** Define getter functions for array-like access to the tokenList's contents. */
|
195
|
+
if (length >= maxLength)
|
196
|
+
for (; maxLength < length; ++maxLength) {
|
197
|
+
addIndexGetter(maxLength);
|
198
|
+
}
|
199
|
+
};
|
253
200
|
|
254
|
-
|
255
|
-
var
|
201
|
+
/** Helper function called at the start of each class method. Internal use only. */
|
202
|
+
var preop = function () {
|
203
|
+
var error;
|
204
|
+
var i;
|
205
|
+
var args = arguments;
|
206
|
+
var rSpace = /\s+/;
|
207
|
+
|
208
|
+
/** Validate the token/s passed to an instance method, if any. */
|
209
|
+
if (args.length)
|
210
|
+
for (i = 0; i < args.length; ++i)
|
211
|
+
if (rSpace.test(args[i])) {
|
212
|
+
error = new SyntaxError('String "' + args[i] + '" ' + "contains" + ' an invalid character');
|
213
|
+
error.code = 5;
|
214
|
+
error.name = "InvalidCharacterError";
|
215
|
+
throw error;
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
/** Split the new value apart by whitespace*/
|
220
|
+
if (typeof el[prop] === "object") {
|
221
|
+
tokens = ("" + el[prop].baseVal).replace(/^\s+|\s+$/g, "").split(rSpace);
|
222
|
+
} else {
|
223
|
+
tokens = ("" + el[prop]).replace(/^\s+|\s+$/g, "").split(rSpace);
|
224
|
+
}
|
256
225
|
|
257
|
-
|
226
|
+
/** Avoid treating blank strings as single-item token lists */
|
227
|
+
if ("" === tokens[0]) tokens = [];
|
258
228
|
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
}
|
267
|
-
}(this));
|
268
|
-
}
|
229
|
+
/** Repopulate the internal token lists */
|
230
|
+
tokenMap = {};
|
231
|
+
for (i = 0; i < tokens.length; ++i)
|
232
|
+
tokenMap[tokens[i]] = true;
|
233
|
+
length = tokens.length;
|
234
|
+
reindex();
|
235
|
+
};
|
269
236
|
|
270
|
-
|
271
|
-
|
237
|
+
/** Populate our internal token list if the targeted attribute of the subject element isn't empty. */
|
238
|
+
preop();
|
272
239
|
|
273
|
-
|
240
|
+
/** Return the number of tokens in the underlying string. Read-only. */
|
241
|
+
defineGetter(that, "length", function () {
|
242
|
+
preop();
|
243
|
+
return length;
|
244
|
+
});
|
274
245
|
|
275
|
-
|
276
|
-
|
246
|
+
/** Override the default toString/toLocaleString methods to return a space-delimited list of tokens when typecast. */
|
247
|
+
that.toLocaleString =
|
248
|
+
that.toString = function () {
|
249
|
+
preop();
|
250
|
+
return tokens.join(" ");
|
251
|
+
};
|
277
252
|
|
278
|
-
|
253
|
+
that.item = function (idx) {
|
254
|
+
preop();
|
255
|
+
return tokens[idx];
|
256
|
+
};
|
279
257
|
|
280
|
-
|
281
|
-
|
258
|
+
that.contains = function (token) {
|
259
|
+
preop();
|
260
|
+
return !!tokenMap[token];
|
261
|
+
};
|
282
262
|
|
283
|
-
|
263
|
+
that.add = function () {
|
264
|
+
preop.apply(that, args = arguments);
|
284
265
|
|
285
|
-
|
286
|
-
|
266
|
+
for (var args, token, i = 0, l = args.length; i < l; ++i) {
|
267
|
+
token = args[i];
|
268
|
+
if (!tokenMap[token]) {
|
269
|
+
tokens.push(token);
|
270
|
+
tokenMap[token] = true;
|
271
|
+
}
|
272
|
+
}
|
287
273
|
|
288
|
-
|
274
|
+
/** Update the targeted attribute of the attached element if the token list's changed. */
|
275
|
+
if (length !== tokens.length) {
|
276
|
+
length = tokens.length >>> 0;
|
277
|
+
if (typeof el[prop] === "object") {
|
278
|
+
el[prop].baseVal = tokens.join(" ");
|
279
|
+
} else {
|
280
|
+
el[prop] = tokens.join(" ");
|
281
|
+
}
|
282
|
+
reindex();
|
283
|
+
}
|
284
|
+
};
|
289
285
|
|
290
|
-
|
291
|
-
|
292
|
-
this.Document.prototype = document;
|
293
|
-
}
|
294
|
-
}
|
295
|
-
|
296
|
-
|
297
|
-
})
|
298
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
299
|
-
|
300
|
-
(function(undefined) {
|
301
|
-
|
302
|
-
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Element/detect.js
|
303
|
-
var detect = ('Element' in this && 'HTMLElement' in this);
|
304
|
-
|
305
|
-
if (detect) return
|
306
|
-
|
307
|
-
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Element&flags=always
|
308
|
-
(function () {
|
309
|
-
|
310
|
-
// IE8
|
311
|
-
if (window.Element && !window.HTMLElement) {
|
312
|
-
window.HTMLElement = window.Element;
|
313
|
-
return;
|
314
|
-
}
|
315
|
-
|
316
|
-
// create Element constructor
|
317
|
-
window.Element = window.HTMLElement = new Function('return function Element() {}')();
|
318
|
-
|
319
|
-
// generate sandboxed iframe
|
320
|
-
var vbody = document.appendChild(document.createElement('body'));
|
321
|
-
var frame = vbody.appendChild(document.createElement('iframe'));
|
322
|
-
|
323
|
-
// use sandboxed iframe to replicate Element functionality
|
324
|
-
var frameDocument = frame.contentWindow.document;
|
325
|
-
var prototype = Element.prototype = frameDocument.appendChild(frameDocument.createElement('*'));
|
326
|
-
var cache = {};
|
327
|
-
|
328
|
-
// polyfill Element.prototype on an element
|
329
|
-
var shiv = function (element, deep) {
|
330
|
-
var
|
331
|
-
childNodes = element.childNodes || [],
|
332
|
-
index = -1,
|
333
|
-
key, value, childNode;
|
334
|
-
|
335
|
-
if (element.nodeType === 1 && element.constructor !== Element) {
|
336
|
-
element.constructor = Element;
|
337
|
-
|
338
|
-
for (key in cache) {
|
339
|
-
value = cache[key];
|
340
|
-
element[key] = value;
|
341
|
-
}
|
342
|
-
}
|
343
|
-
|
344
|
-
while (childNode = deep && childNodes[++index]) {
|
345
|
-
shiv(childNode, deep);
|
346
|
-
}
|
347
|
-
|
348
|
-
return element;
|
349
|
-
};
|
350
|
-
|
351
|
-
var elements = document.getElementsByTagName('*');
|
352
|
-
var nativeCreateElement = document.createElement;
|
353
|
-
var interval;
|
354
|
-
var loopLimit = 100;
|
355
|
-
|
356
|
-
prototype.attachEvent('onpropertychange', function (event) {
|
357
|
-
var
|
358
|
-
propertyName = event.propertyName,
|
359
|
-
nonValue = !cache.hasOwnProperty(propertyName),
|
360
|
-
newValue = prototype[propertyName],
|
361
|
-
oldValue = cache[propertyName],
|
362
|
-
index = -1,
|
363
|
-
element;
|
364
|
-
|
365
|
-
while (element = elements[++index]) {
|
366
|
-
if (element.nodeType === 1) {
|
367
|
-
if (nonValue || element[propertyName] === oldValue) {
|
368
|
-
element[propertyName] = newValue;
|
369
|
-
}
|
370
|
-
}
|
371
|
-
}
|
372
|
-
|
373
|
-
cache[propertyName] = newValue;
|
374
|
-
});
|
375
|
-
|
376
|
-
prototype.constructor = Element;
|
377
|
-
|
378
|
-
if (!prototype.hasAttribute) {
|
379
|
-
// <Element>.hasAttribute
|
380
|
-
prototype.hasAttribute = function hasAttribute(name) {
|
381
|
-
return this.getAttribute(name) !== null;
|
382
|
-
};
|
383
|
-
}
|
384
|
-
|
385
|
-
// Apply Element prototype to the pre-existing DOM as soon as the body element appears.
|
386
|
-
function bodyCheck() {
|
387
|
-
if (!(loopLimit--)) clearTimeout(interval);
|
388
|
-
if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
|
389
|
-
shiv(document, true);
|
390
|
-
if (interval && document.body.prototype) clearTimeout(interval);
|
391
|
-
return (!!document.body.prototype);
|
392
|
-
}
|
393
|
-
return false;
|
394
|
-
}
|
395
|
-
if (!bodyCheck()) {
|
396
|
-
document.onreadystatechange = bodyCheck;
|
397
|
-
interval = setInterval(bodyCheck, 25);
|
398
|
-
}
|
399
|
-
|
400
|
-
// Apply to any new elements created after load
|
401
|
-
document.createElement = function createElement(nodeName) {
|
402
|
-
var element = nativeCreateElement(String(nodeName).toLowerCase());
|
403
|
-
return shiv(element);
|
404
|
-
};
|
405
|
-
|
406
|
-
// remove sandboxed iframe
|
407
|
-
document.removeChild(vbody);
|
408
|
-
}());
|
409
|
-
|
410
|
-
})
|
411
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
412
|
-
|
413
|
-
(function(undefined) {
|
414
|
-
|
415
|
-
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Event/detect.js
|
416
|
-
var detect = (
|
417
|
-
(function(global) {
|
418
|
-
|
419
|
-
if (!('Event' in global)) return false;
|
420
|
-
if (typeof global.Event === 'function') return true;
|
421
|
-
|
422
|
-
try {
|
423
|
-
|
424
|
-
// In IE 9-11, the Event object exists but cannot be instantiated
|
425
|
-
new Event('click');
|
426
|
-
return true;
|
427
|
-
} catch(e) {
|
428
|
-
return false;
|
429
|
-
}
|
430
|
-
}(this))
|
431
|
-
);
|
432
|
-
|
433
|
-
if (detect) return
|
434
|
-
|
435
|
-
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Event&flags=always
|
436
|
-
(function () {
|
437
|
-
var unlistenableWindowEvents = {
|
438
|
-
click: 1,
|
439
|
-
dblclick: 1,
|
440
|
-
keyup: 1,
|
441
|
-
keypress: 1,
|
442
|
-
keydown: 1,
|
443
|
-
mousedown: 1,
|
444
|
-
mouseup: 1,
|
445
|
-
mousemove: 1,
|
446
|
-
mouseover: 1,
|
447
|
-
mouseenter: 1,
|
448
|
-
mouseleave: 1,
|
449
|
-
mouseout: 1,
|
450
|
-
storage: 1,
|
451
|
-
storagecommit: 1,
|
452
|
-
textinput: 1
|
453
|
-
};
|
454
|
-
|
455
|
-
// This polyfill depends on availability of `document` so will not run in a worker
|
456
|
-
// However, we asssume there are no browsers with worker support that lack proper
|
457
|
-
// support for `Event` within the worker
|
458
|
-
if (typeof document === 'undefined' || typeof window === 'undefined') return;
|
459
|
-
|
460
|
-
function indexOf(array, element) {
|
461
|
-
var
|
462
|
-
index = -1,
|
463
|
-
length = array.length;
|
464
|
-
|
465
|
-
while (++index < length) {
|
466
|
-
if (index in array && array[index] === element) {
|
467
|
-
return index;
|
468
|
-
}
|
469
|
-
}
|
470
|
-
|
471
|
-
return -1;
|
472
|
-
}
|
473
|
-
|
474
|
-
var existingProto = (window.Event && window.Event.prototype) || null;
|
475
|
-
window.Event = Window.prototype.Event = function Event(type, eventInitDict) {
|
476
|
-
if (!type) {
|
477
|
-
throw new Error('Not enough arguments');
|
478
|
-
}
|
479
|
-
|
480
|
-
var event;
|
481
|
-
// Shortcut if browser supports createEvent
|
482
|
-
if ('createEvent' in document) {
|
483
|
-
event = document.createEvent('Event');
|
484
|
-
var bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
|
485
|
-
var cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
|
486
|
-
|
487
|
-
event.initEvent(type, bubbles, cancelable);
|
488
|
-
|
489
|
-
return event;
|
490
|
-
}
|
491
|
-
|
492
|
-
event = document.createEventObject();
|
493
|
-
|
494
|
-
event.type = type;
|
495
|
-
event.bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
|
496
|
-
event.cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
|
497
|
-
|
498
|
-
return event;
|
499
|
-
};
|
500
|
-
if (existingProto) {
|
501
|
-
Object.defineProperty(window.Event, 'prototype', {
|
502
|
-
configurable: false,
|
503
|
-
enumerable: false,
|
504
|
-
writable: true,
|
505
|
-
value: existingProto
|
506
|
-
});
|
507
|
-
}
|
508
|
-
|
509
|
-
if (!('createEvent' in document)) {
|
510
|
-
window.addEventListener = Window.prototype.addEventListener = Document.prototype.addEventListener = Element.prototype.addEventListener = function addEventListener() {
|
511
|
-
var
|
512
|
-
element = this,
|
513
|
-
type = arguments[0],
|
514
|
-
listener = arguments[1];
|
515
|
-
|
516
|
-
if (element === window && type in unlistenableWindowEvents) {
|
517
|
-
throw new Error('In IE8 the event: ' + type + ' is not available on the window object. Please see https://github.com/Financial-Times/polyfill-service/issues/317 for more information.');
|
518
|
-
}
|
519
|
-
|
520
|
-
if (!element._events) {
|
521
|
-
element._events = {};
|
522
|
-
}
|
523
|
-
|
524
|
-
if (!element._events[type]) {
|
525
|
-
element._events[type] = function (event) {
|
526
|
-
var
|
527
|
-
list = element._events[event.type].list,
|
528
|
-
events = list.slice(),
|
529
|
-
index = -1,
|
530
|
-
length = events.length,
|
531
|
-
eventElement;
|
532
|
-
|
533
|
-
event.preventDefault = function preventDefault() {
|
534
|
-
if (event.cancelable !== false) {
|
535
|
-
event.returnValue = false;
|
536
|
-
}
|
537
|
-
};
|
538
|
-
|
539
|
-
event.stopPropagation = function stopPropagation() {
|
540
|
-
event.cancelBubble = true;
|
541
|
-
};
|
542
|
-
|
543
|
-
event.stopImmediatePropagation = function stopImmediatePropagation() {
|
544
|
-
event.cancelBubble = true;
|
545
|
-
event.cancelImmediate = true;
|
546
|
-
};
|
547
|
-
|
548
|
-
event.currentTarget = element;
|
549
|
-
event.relatedTarget = event.fromElement || null;
|
550
|
-
event.target = event.target || event.srcElement || element;
|
551
|
-
event.timeStamp = new Date().getTime();
|
552
|
-
|
553
|
-
if (event.clientX) {
|
554
|
-
event.pageX = event.clientX + document.documentElement.scrollLeft;
|
555
|
-
event.pageY = event.clientY + document.documentElement.scrollTop;
|
556
|
-
}
|
557
|
-
|
558
|
-
while (++index < length && !event.cancelImmediate) {
|
559
|
-
if (index in events) {
|
560
|
-
eventElement = events[index];
|
561
|
-
|
562
|
-
if (indexOf(list, eventElement) !== -1 && typeof eventElement === 'function') {
|
563
|
-
eventElement.call(element, event);
|
564
|
-
}
|
565
|
-
}
|
566
|
-
}
|
567
|
-
};
|
568
|
-
|
569
|
-
element._events[type].list = [];
|
570
|
-
|
571
|
-
if (element.attachEvent) {
|
572
|
-
element.attachEvent('on' + type, element._events[type]);
|
573
|
-
}
|
574
|
-
}
|
575
|
-
|
576
|
-
element._events[type].list.push(listener);
|
577
|
-
};
|
578
|
-
|
579
|
-
window.removeEventListener = Window.prototype.removeEventListener = Document.prototype.removeEventListener = Element.prototype.removeEventListener = function removeEventListener() {
|
580
|
-
var
|
581
|
-
element = this,
|
582
|
-
type = arguments[0],
|
583
|
-
listener = arguments[1],
|
584
|
-
index;
|
585
|
-
|
586
|
-
if (element._events && element._events[type] && element._events[type].list) {
|
587
|
-
index = indexOf(element._events[type].list, listener);
|
588
|
-
|
589
|
-
if (index !== -1) {
|
590
|
-
element._events[type].list.splice(index, 1);
|
591
|
-
|
592
|
-
if (!element._events[type].list.length) {
|
593
|
-
if (element.detachEvent) {
|
594
|
-
element.detachEvent('on' + type, element._events[type]);
|
595
|
-
}
|
596
|
-
delete element._events[type];
|
597
|
-
}
|
598
|
-
}
|
599
|
-
}
|
600
|
-
};
|
601
|
-
|
602
|
-
window.dispatchEvent = Window.prototype.dispatchEvent = Document.prototype.dispatchEvent = Element.prototype.dispatchEvent = function dispatchEvent(event) {
|
603
|
-
if (!arguments.length) {
|
604
|
-
throw new Error('Not enough arguments');
|
605
|
-
}
|
606
|
-
|
607
|
-
if (!event || typeof event.type !== 'string') {
|
608
|
-
throw new Error('DOM Events Exception 0');
|
609
|
-
}
|
610
|
-
|
611
|
-
var element = this, type = event.type;
|
612
|
-
|
613
|
-
try {
|
614
|
-
if (!event.bubbles) {
|
615
|
-
event.cancelBubble = true;
|
616
|
-
|
617
|
-
var cancelBubbleEvent = function (event) {
|
618
|
-
event.cancelBubble = true;
|
619
|
-
|
620
|
-
(element || window).detachEvent('on' + type, cancelBubbleEvent);
|
621
|
-
};
|
622
|
-
|
623
|
-
this.attachEvent('on' + type, cancelBubbleEvent);
|
624
|
-
}
|
625
|
-
|
626
|
-
this.fireEvent('on' + type, event);
|
627
|
-
} catch (error) {
|
628
|
-
event.target = element;
|
629
|
-
|
630
|
-
do {
|
631
|
-
event.currentTarget = element;
|
632
|
-
|
633
|
-
if ('_events' in element && typeof element._events[type] === 'function') {
|
634
|
-
element._events[type].call(element, event);
|
635
|
-
}
|
636
|
-
|
637
|
-
if (typeof element['on' + type] === 'function') {
|
638
|
-
element['on' + type].call(element, event);
|
639
|
-
}
|
640
|
-
|
641
|
-
element = element.nodeType === 9 ? element.parentWindow : element.parentNode;
|
642
|
-
} while (element && !event.cancelBubble);
|
643
|
-
}
|
644
|
-
|
645
|
-
return true;
|
646
|
-
};
|
647
|
-
|
648
|
-
// Add the DOMContentLoaded Event
|
649
|
-
document.attachEvent('onreadystatechange', function() {
|
650
|
-
if (document.readyState === 'complete') {
|
651
|
-
document.dispatchEvent(new Event('DOMContentLoaded', {
|
652
|
-
bubbles: true
|
653
|
-
}));
|
654
|
-
}
|
655
|
-
});
|
656
|
-
}
|
657
|
-
}());
|
658
|
-
|
659
|
-
})
|
660
|
-
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
661
|
-
|
662
|
-
(function(undefined) {
|
663
|
-
|
664
|
-
// Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-service/master/packages/polyfill-library/polyfills/DOMTokenList/detect.js
|
665
|
-
var detect = (
|
666
|
-
'DOMTokenList' in this && (function (x) {
|
667
|
-
return 'classList' in x ? !x.classList.toggle('x', false) && !x.className : true;
|
668
|
-
})(document.createElement('x'))
|
669
|
-
);
|
286
|
+
that.remove = function () {
|
287
|
+
preop.apply(that, args = arguments);
|
670
288
|
|
671
|
-
|
289
|
+
/** Build a hash of token names to compare against when recollecting our token list. */
|
290
|
+
for (var args, ignore = {}, i = 0, t = []; i < args.length; ++i) {
|
291
|
+
ignore[args[i]] = true;
|
292
|
+
delete tokenMap[args[i]];
|
293
|
+
}
|
672
294
|
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
if (
|
678
|
-
!nativeImpl ||
|
679
|
-
(
|
680
|
-
!!document.createElementNS &&
|
681
|
-
!!document.createElementNS('http://www.w3.org/2000/svg', 'svg') &&
|
682
|
-
!(document.createElementNS("http://www.w3.org/2000/svg", "svg").classList instanceof DOMTokenList)
|
683
|
-
)
|
684
|
-
) {
|
685
|
-
global.DOMTokenList = (function() { // eslint-disable-line no-unused-vars
|
686
|
-
var dpSupport = true;
|
687
|
-
var defineGetter = function (object, name, fn, configurable) {
|
688
|
-
if (Object.defineProperty)
|
689
|
-
Object.defineProperty(object, name, {
|
690
|
-
configurable: false === dpSupport ? true : !!configurable,
|
691
|
-
get: fn
|
692
|
-
});
|
295
|
+
/** Run through our tokens list and reassign only those that aren't defined in the hash declared above. */
|
296
|
+
for (i = 0; i < tokens.length; ++i)
|
297
|
+
if (!ignore[tokens[i]]) t.push(tokens[i]);
|
693
298
|
|
694
|
-
|
695
|
-
|
299
|
+
tokens = t;
|
300
|
+
length = t.length >>> 0;
|
696
301
|
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
var _DOMTokenList = function (el, prop) {
|
707
|
-
var that = this;
|
708
|
-
var tokens = [];
|
709
|
-
var tokenMap = {};
|
710
|
-
var length = 0;
|
711
|
-
var maxLength = 0;
|
712
|
-
var addIndexGetter = function (i) {
|
713
|
-
defineGetter(that, i, function () {
|
714
|
-
preop();
|
715
|
-
return tokens[i];
|
716
|
-
}, false);
|
302
|
+
/** Update the targeted attribute of the attached element. */
|
303
|
+
if (typeof el[prop] === "object") {
|
304
|
+
el[prop].baseVal = tokens.join(" ");
|
305
|
+
} else {
|
306
|
+
el[prop] = tokens.join(" ");
|
307
|
+
}
|
308
|
+
reindex();
|
309
|
+
};
|
717
310
|
|
718
|
-
|
719
|
-
|
311
|
+
that.toggle = function (token, force) {
|
312
|
+
preop.apply(that, [token]);
|
313
|
+
|
314
|
+
/** Token state's being forced. */
|
315
|
+
if (undefined !== force) {
|
316
|
+
if (force) {
|
317
|
+
that.add(token);
|
318
|
+
return true;
|
319
|
+
} else {
|
320
|
+
that.remove(token);
|
321
|
+
return false;
|
322
|
+
}
|
323
|
+
}
|
720
324
|
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
325
|
+
/** Token already exists in tokenList. Remove it, and return FALSE. */
|
326
|
+
if (tokenMap[token]) {
|
327
|
+
that.remove(token);
|
328
|
+
return false;
|
725
329
|
}
|
330
|
+
|
331
|
+
/** Otherwise, add the token and return TRUE. */
|
332
|
+
that.add(token);
|
333
|
+
return true;
|
334
|
+
};
|
335
|
+
|
336
|
+
return that;
|
726
337
|
};
|
727
338
|
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
339
|
+
return _DOMTokenList;
|
340
|
+
}());
|
341
|
+
}
|
342
|
+
|
343
|
+
// Add second argument to native DOMTokenList.toggle() if necessary
|
344
|
+
(function () {
|
345
|
+
var e = document.createElement('span');
|
346
|
+
if (!('classList' in e)) return;
|
347
|
+
e.classList.toggle('x', false);
|
348
|
+
if (!e.classList.contains('x')) return;
|
349
|
+
e.classList.constructor.prototype.toggle = function toggle(token /*, force*/) {
|
350
|
+
var force = arguments[1];
|
351
|
+
if (force === undefined) {
|
352
|
+
var add = !this.contains(token);
|
353
|
+
this[add ? 'add' : 'remove'](token);
|
354
|
+
return add;
|
355
|
+
}
|
356
|
+
force = !!force;
|
357
|
+
this[force ? 'add' : 'remove'](token);
|
358
|
+
return force;
|
359
|
+
};
|
360
|
+
}());
|
744
361
|
|
362
|
+
// Add multiple arguments to native DOMTokenList.add() if necessary
|
363
|
+
(function () {
|
364
|
+
var e = document.createElement('span');
|
365
|
+
if (!('classList' in e)) return;
|
366
|
+
e.classList.add('a', 'b');
|
367
|
+
if (e.classList.contains('b')) return;
|
368
|
+
var native = e.classList.constructor.prototype.add;
|
369
|
+
e.classList.constructor.prototype.add = function () {
|
370
|
+
var args = arguments;
|
371
|
+
var l = arguments.length;
|
372
|
+
for (var i = 0; i < l; i++) {
|
373
|
+
native.call(this, args[i]);
|
374
|
+
}
|
375
|
+
};
|
376
|
+
}());
|
745
377
|
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
378
|
+
// Add multiple arguments to native DOMTokenList.remove() if necessary
|
379
|
+
(function () {
|
380
|
+
var e = document.createElement('span');
|
381
|
+
if (!('classList' in e)) return;
|
382
|
+
e.classList.add('a');
|
383
|
+
e.classList.add('b');
|
384
|
+
e.classList.remove('a', 'b');
|
385
|
+
if (!e.classList.contains('b')) return;
|
386
|
+
var native = e.classList.constructor.prototype.remove;
|
387
|
+
e.classList.constructor.prototype.remove = function () {
|
388
|
+
var args = arguments;
|
389
|
+
var l = arguments.length;
|
390
|
+
for (var i = 0; i < l; i++) {
|
391
|
+
native.call(this, args[i]);
|
392
|
+
}
|
393
|
+
};
|
394
|
+
}());
|
752
395
|
|
753
|
-
|
754
|
-
if ("" === tokens[0]) tokens = [];
|
396
|
+
}(this));
|
755
397
|
|
756
|
-
|
757
|
-
tokenMap = {};
|
758
|
-
for (i = 0; i < tokens.length; ++i)
|
759
|
-
tokenMap[tokens[i]] = true;
|
760
|
-
length = tokens.length;
|
761
|
-
reindex();
|
762
|
-
};
|
398
|
+
}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
763
399
|
|
764
|
-
|
765
|
-
|
400
|
+
// @ts-nocheck
|
401
|
+
(function (undefined) {
|
766
402
|
|
767
|
-
|
768
|
-
|
769
|
-
preop();
|
770
|
-
return length;
|
771
|
-
});
|
403
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Document/detect.js
|
404
|
+
var detect = ("Document" in this);
|
772
405
|
|
773
|
-
|
774
|
-
that.toLocaleString =
|
775
|
-
that.toString = function () {
|
776
|
-
preop();
|
777
|
-
return tokens.join(" ");
|
778
|
-
};
|
406
|
+
if (detect) return
|
779
407
|
|
780
|
-
|
781
|
-
|
782
|
-
return tokens[idx];
|
783
|
-
};
|
408
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Document&flags=always
|
409
|
+
if ((typeof WorkerGlobalScope === "undefined") && (typeof importScripts !== "function")) {
|
784
410
|
|
785
|
-
|
786
|
-
preop();
|
787
|
-
return !!tokenMap[token];
|
788
|
-
};
|
411
|
+
if (this.HTMLDocument) { // IE8
|
789
412
|
|
790
|
-
|
791
|
-
|
413
|
+
// HTMLDocument is an extension of Document. If the browser has HTMLDocument but not Document, the former will suffice as an alias for the latter.
|
414
|
+
this.Document = this.HTMLDocument;
|
792
415
|
|
793
|
-
|
794
|
-
token = args[i];
|
795
|
-
if (!tokenMap[token]) {
|
796
|
-
tokens.push(token);
|
797
|
-
tokenMap[token] = true;
|
798
|
-
}
|
799
|
-
}
|
416
|
+
} else {
|
800
417
|
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
} else {
|
807
|
-
el[prop] = tokens.join(" ");
|
808
|
-
}
|
809
|
-
reindex();
|
810
|
-
}
|
811
|
-
};
|
418
|
+
// Create an empty function to act as the missing constructor for the document object, attach the document object as its prototype. The function needs to be anonymous else it is hoisted and causes the feature detect to prematurely pass, preventing the assignments below being made.
|
419
|
+
this.Document = this.HTMLDocument = document.constructor = (new Function('return function Document() {}')());
|
420
|
+
this.Document.prototype = document;
|
421
|
+
}
|
422
|
+
}
|
812
423
|
|
813
|
-
that.remove = function () {
|
814
|
-
preop.apply(that, args = arguments);
|
815
|
-
|
816
|
-
/** Build a hash of token names to compare against when recollecting our token list. */
|
817
|
-
for (var args, ignore = {}, i = 0, t = []; i < args.length; ++i) {
|
818
|
-
ignore[args[i]] = true;
|
819
|
-
delete tokenMap[args[i]];
|
820
|
-
}
|
821
|
-
|
822
|
-
/** Run through our tokens list and reassign only those that aren't defined in the hash declared above. */
|
823
|
-
for (i = 0; i < tokens.length; ++i)
|
824
|
-
if (!ignore[tokens[i]]) t.push(tokens[i]);
|
825
|
-
|
826
|
-
tokens = t;
|
827
|
-
length = t.length >>> 0;
|
828
|
-
|
829
|
-
/** Update the targeted attribute of the attached element. */
|
830
|
-
if (typeof el[prop] === "object") {
|
831
|
-
el[prop].baseVal = tokens.join(" ");
|
832
|
-
} else {
|
833
|
-
el[prop] = tokens.join(" ");
|
834
|
-
}
|
835
|
-
reindex();
|
836
|
-
};
|
837
424
|
|
838
|
-
|
839
|
-
|
425
|
+
})
|
426
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
840
427
|
|
841
|
-
|
842
|
-
if (undefined !== force) {
|
843
|
-
if (force) {
|
844
|
-
that.add(token);
|
845
|
-
return true;
|
846
|
-
} else {
|
847
|
-
that.remove(token);
|
848
|
-
return false;
|
849
|
-
}
|
850
|
-
}
|
428
|
+
// @ts-nocheck
|
851
429
|
|
852
|
-
|
853
|
-
if (tokenMap[token]) {
|
854
|
-
that.remove(token);
|
855
|
-
return false;
|
856
|
-
}
|
430
|
+
(function(undefined) {
|
857
431
|
|
858
|
-
|
859
|
-
|
860
|
-
return true;
|
861
|
-
};
|
432
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Element/detect.js
|
433
|
+
var detect = ('Element' in this && 'HTMLElement' in this);
|
862
434
|
|
863
|
-
|
864
|
-
};
|
435
|
+
if (detect) return
|
865
436
|
|
866
|
-
|
867
|
-
|
868
|
-
}
|
437
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Element&flags=always
|
438
|
+
(function () {
|
869
439
|
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
440
|
+
// IE8
|
441
|
+
if (window.Element && !window.HTMLElement) {
|
442
|
+
window.HTMLElement = window.Element;
|
443
|
+
return;
|
444
|
+
}
|
445
|
+
|
446
|
+
// create Element constructor
|
447
|
+
window.Element = window.HTMLElement = new Function('return function Element() {}')();
|
448
|
+
|
449
|
+
// generate sandboxed iframe
|
450
|
+
var vbody = document.appendChild(document.createElement('body'));
|
451
|
+
var frame = vbody.appendChild(document.createElement('iframe'));
|
452
|
+
|
453
|
+
// use sandboxed iframe to replicate Element functionality
|
454
|
+
var frameDocument = frame.contentWindow.document;
|
455
|
+
var prototype = Element.prototype = frameDocument.appendChild(frameDocument.createElement('*'));
|
456
|
+
var cache = {};
|
457
|
+
|
458
|
+
// polyfill Element.prototype on an element
|
459
|
+
var shiv = function (element, deep) {
|
460
|
+
var
|
461
|
+
childNodes = element.childNodes || [],
|
462
|
+
index = -1,
|
463
|
+
key, value, childNode;
|
464
|
+
|
465
|
+
if (element.nodeType === 1 && element.constructor !== Element) {
|
466
|
+
element.constructor = Element;
|
467
|
+
|
468
|
+
for (key in cache) {
|
469
|
+
value = cache[key];
|
470
|
+
element[key] = value;
|
471
|
+
}
|
472
|
+
}
|
473
|
+
|
474
|
+
while (childNode = deep && childNodes[++index]) {
|
475
|
+
shiv(childNode, deep);
|
476
|
+
}
|
477
|
+
|
478
|
+
return element;
|
479
|
+
};
|
480
|
+
|
481
|
+
var elements = document.getElementsByTagName('*');
|
482
|
+
var nativeCreateElement = document.createElement;
|
483
|
+
var interval;
|
484
|
+
var loopLimit = 100;
|
485
|
+
|
486
|
+
prototype.attachEvent('onpropertychange', function (event) {
|
487
|
+
var
|
488
|
+
propertyName = event.propertyName,
|
489
|
+
nonValue = !cache.hasOwnProperty(propertyName),
|
490
|
+
newValue = prototype[propertyName],
|
491
|
+
oldValue = cache[propertyName],
|
492
|
+
index = -1,
|
493
|
+
element;
|
494
|
+
|
495
|
+
while (element = elements[++index]) {
|
496
|
+
if (element.nodeType === 1) {
|
497
|
+
if (nonValue || element[propertyName] === oldValue) {
|
498
|
+
element[propertyName] = newValue;
|
499
|
+
}
|
500
|
+
}
|
501
|
+
}
|
502
|
+
|
503
|
+
cache[propertyName] = newValue;
|
504
|
+
});
|
505
|
+
|
506
|
+
prototype.constructor = Element;
|
507
|
+
|
508
|
+
if (!prototype.hasAttribute) {
|
509
|
+
// <Element>.hasAttribute
|
510
|
+
prototype.hasAttribute = function hasAttribute(name) {
|
511
|
+
return this.getAttribute(name) !== null;
|
512
|
+
};
|
513
|
+
}
|
514
|
+
|
515
|
+
// Apply Element prototype to the pre-existing DOM as soon as the body element appears.
|
516
|
+
function bodyCheck() {
|
517
|
+
if (!(loopLimit--)) clearTimeout(interval);
|
518
|
+
if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
|
519
|
+
shiv(document, true);
|
520
|
+
if (interval && document.body.prototype) clearTimeout(interval);
|
521
|
+
return (!!document.body.prototype);
|
522
|
+
}
|
523
|
+
return false;
|
524
|
+
}
|
525
|
+
if (!bodyCheck()) {
|
526
|
+
document.onreadystatechange = bodyCheck;
|
527
|
+
interval = setInterval(bodyCheck, 25);
|
528
|
+
}
|
529
|
+
|
530
|
+
// Apply to any new elements created after load
|
531
|
+
document.createElement = function createElement(nodeName) {
|
532
|
+
var element = nativeCreateElement(String(nodeName).toLowerCase());
|
533
|
+
return shiv(element);
|
534
|
+
};
|
535
|
+
|
536
|
+
// remove sandboxed iframe
|
537
|
+
document.removeChild(vbody);
|
538
|
+
}());
|
539
|
+
|
540
|
+
})
|
541
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
542
|
+
|
543
|
+
// @ts-nocheck
|
544
|
+
|
545
|
+
(function(undefined) {
|
546
|
+
|
547
|
+
// Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-service/8717a9e04ac7aff99b4980fbedead98036b0929a/packages/polyfill-library/polyfills/Element/prototype/classList/detect.js
|
548
|
+
var detect = (
|
549
|
+
'document' in this && "classList" in document.documentElement && 'Element' in this && 'classList' in Element.prototype && (function () {
|
550
|
+
var e = document.createElement('span');
|
551
|
+
e.classList.add('a', 'b');
|
552
|
+
return e.classList.contains('b');
|
553
|
+
}())
|
554
|
+
);
|
555
|
+
|
556
|
+
if (detect) return
|
557
|
+
|
558
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Element.prototype.classList&flags=always
|
559
|
+
(function (global) {
|
560
|
+
var dpSupport = true;
|
561
|
+
var defineGetter = function (object, name, fn, configurable) {
|
562
|
+
if (Object.defineProperty)
|
563
|
+
Object.defineProperty(object, name, {
|
564
|
+
configurable: false === dpSupport ? true : !!configurable,
|
565
|
+
get: fn
|
566
|
+
});
|
567
|
+
|
568
|
+
else object.__defineGetter__(name, fn);
|
902
569
|
};
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
570
|
+
/** Ensure the browser allows Object.defineProperty to be used on native JavaScript objects. */
|
571
|
+
try {
|
572
|
+
defineGetter({}, "support");
|
573
|
+
}
|
574
|
+
catch (e) {
|
575
|
+
dpSupport = false;
|
576
|
+
}
|
577
|
+
/** Polyfills a property with a DOMTokenList */
|
578
|
+
var addProp = function (o, name, attr) {
|
579
|
+
|
580
|
+
defineGetter(o.prototype, name, function () {
|
581
|
+
var tokenList;
|
582
|
+
|
583
|
+
var THIS = this,
|
584
|
+
|
585
|
+
/** Prevent this from firing twice for some reason. What the hell, IE. */
|
586
|
+
gibberishProperty = "__defineGetter__" + "DEFINE_PROPERTY" + name;
|
587
|
+
if(THIS[gibberishProperty]) return tokenList;
|
588
|
+
THIS[gibberishProperty] = true;
|
589
|
+
|
590
|
+
/**
|
591
|
+
* IE8 can't define properties on native JavaScript objects, so we'll use a dumb hack instead.
|
592
|
+
*
|
593
|
+
* What this is doing is creating a dummy element ("reflection") inside a detached phantom node ("mirror")
|
594
|
+
* that serves as the target of Object.defineProperty instead. While we could simply use the subject HTML
|
595
|
+
* element instead, this would conflict with element types which use indexed properties (such as forms and
|
596
|
+
* select lists).
|
597
|
+
*/
|
598
|
+
if (false === dpSupport) {
|
599
|
+
|
600
|
+
var visage;
|
601
|
+
var mirror = addProp.mirror || document.createElement("div");
|
602
|
+
var reflections = mirror.childNodes;
|
603
|
+
var l = reflections.length;
|
604
|
+
|
605
|
+
for (var i = 0; i < l; ++i)
|
606
|
+
if (reflections[i]._R === THIS) {
|
607
|
+
visage = reflections[i];
|
608
|
+
break;
|
609
|
+
}
|
610
|
+
|
611
|
+
/** Couldn't find an element's reflection inside the mirror. Materialise one. */
|
612
|
+
visage || (visage = mirror.appendChild(document.createElement("div")));
|
613
|
+
|
614
|
+
tokenList = DOMTokenList.call(visage, THIS, attr);
|
615
|
+
} else tokenList = new DOMTokenList(THIS, attr);
|
616
|
+
|
617
|
+
defineGetter(THIS, name, function () {
|
618
|
+
return tokenList;
|
619
|
+
});
|
620
|
+
delete THIS[gibberishProperty];
|
621
|
+
|
622
|
+
return tokenList;
|
623
|
+
}, true);
|
920
624
|
};
|
921
|
-
}());
|
922
625
|
|
923
|
-
|
626
|
+
addProp(global.Element, "classList", "className");
|
627
|
+
addProp(global.HTMLElement, "classList", "className");
|
628
|
+
addProp(global.HTMLLinkElement, "relList", "rel");
|
629
|
+
addProp(global.HTMLAnchorElement, "relList", "rel");
|
630
|
+
addProp(global.HTMLAreaElement, "relList", "rel");
|
631
|
+
}(this));
|
924
632
|
|
925
|
-
}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
633
|
+
}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
926
634
|
|
927
|
-
|
635
|
+
// @ts-nocheck
|
636
|
+
(function (undefined) {
|
928
637
|
|
929
|
-
|
930
|
-
|
931
|
-
'document' in this && "classList" in document.documentElement && 'Element' in this && 'classList' in Element.prototype && (function () {
|
932
|
-
var e = document.createElement('span');
|
933
|
-
e.classList.add('a', 'b');
|
934
|
-
return e.classList.contains('b');
|
935
|
-
}())
|
936
|
-
);
|
638
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Window/detect.js
|
639
|
+
var detect = ('Window' in this);
|
937
640
|
|
938
|
-
|
641
|
+
if (detect) return
|
939
642
|
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
else object.__defineGetter__(name, fn);
|
951
|
-
};
|
952
|
-
/** Ensure the browser allows Object.defineProperty to be used on native JavaScript objects. */
|
953
|
-
try {
|
954
|
-
defineGetter({}, "support");
|
955
|
-
}
|
956
|
-
catch (e) {
|
957
|
-
dpSupport = false;
|
958
|
-
}
|
959
|
-
/** Polyfills a property with a DOMTokenList */
|
960
|
-
var addProp = function (o, name, attr) {
|
961
|
-
|
962
|
-
defineGetter(o.prototype, name, function () {
|
963
|
-
var tokenList;
|
964
|
-
|
965
|
-
var THIS = this,
|
966
|
-
|
967
|
-
/** Prevent this from firing twice for some reason. What the hell, IE. */
|
968
|
-
gibberishProperty = "__defineGetter__" + "DEFINE_PROPERTY" + name;
|
969
|
-
if(THIS[gibberishProperty]) return tokenList;
|
970
|
-
THIS[gibberishProperty] = true;
|
971
|
-
|
972
|
-
/**
|
973
|
-
* IE8 can't define properties on native JavaScript objects, so we'll use a dumb hack instead.
|
974
|
-
*
|
975
|
-
* What this is doing is creating a dummy element ("reflection") inside a detached phantom node ("mirror")
|
976
|
-
* that serves as the target of Object.defineProperty instead. While we could simply use the subject HTML
|
977
|
-
* element instead, this would conflict with element types which use indexed properties (such as forms and
|
978
|
-
* select lists).
|
979
|
-
*/
|
980
|
-
if (false === dpSupport) {
|
981
|
-
|
982
|
-
var visage;
|
983
|
-
var mirror = addProp.mirror || document.createElement("div");
|
984
|
-
var reflections = mirror.childNodes;
|
985
|
-
var l = reflections.length;
|
986
|
-
|
987
|
-
for (var i = 0; i < l; ++i)
|
988
|
-
if (reflections[i]._R === THIS) {
|
989
|
-
visage = reflections[i];
|
990
|
-
break;
|
991
|
-
}
|
992
|
-
|
993
|
-
/** Couldn't find an element's reflection inside the mirror. Materialise one. */
|
994
|
-
visage || (visage = mirror.appendChild(document.createElement("div")));
|
995
|
-
|
996
|
-
tokenList = DOMTokenList.call(visage, THIS, attr);
|
997
|
-
} else tokenList = new DOMTokenList(THIS, attr);
|
998
|
-
|
999
|
-
defineGetter(THIS, name, function () {
|
1000
|
-
return tokenList;
|
1001
|
-
});
|
1002
|
-
delete THIS[gibberishProperty];
|
1003
|
-
|
1004
|
-
return tokenList;
|
1005
|
-
}, true);
|
1006
|
-
};
|
1007
|
-
|
1008
|
-
addProp(global.Element, "classList", "className");
|
1009
|
-
addProp(global.HTMLElement, "classList", "className");
|
1010
|
-
addProp(global.HTMLLinkElement, "relList", "rel");
|
1011
|
-
addProp(global.HTMLAnchorElement, "relList", "rel");
|
1012
|
-
addProp(global.HTMLAreaElement, "relList", "rel");
|
1013
|
-
}(this));
|
1014
|
-
|
1015
|
-
}).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
1016
|
-
|
1017
|
-
/**
|
1018
|
-
* Common helpers which do not require polyfill.
|
1019
|
-
*
|
1020
|
-
* IMPORTANT: If a helper require a polyfill, please isolate it in its own module
|
1021
|
-
* so that the polyfill can be properly tree-shaken and does not burden
|
1022
|
-
* the components that do not need that helper
|
1023
|
-
*
|
1024
|
-
* @module common/index
|
1025
|
-
*/
|
1026
|
-
|
1027
|
-
/**
|
1028
|
-
* TODO: Ideally this would be a NodeList.prototype.forEach polyfill
|
1029
|
-
* This seems to fail in IE8, requires more investigation.
|
1030
|
-
* See: https://github.com/imagitama/nodelist-foreach-polyfill
|
1031
|
-
*
|
1032
|
-
* @param {NodeListOf<Element>} nodes - NodeList from querySelectorAll()
|
1033
|
-
* @param {nodeListIterator} callback - Callback function to run for each node
|
1034
|
-
* @returns {undefined}
|
1035
|
-
*/
|
1036
|
-
function nodeListForEach (nodes, callback) {
|
1037
|
-
if (window.NodeList.prototype.forEach) {
|
1038
|
-
return nodes.forEach(callback)
|
643
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Window&flags=always
|
644
|
+
if ((typeof WorkerGlobalScope === "undefined") && (typeof importScripts !== "function")) {
|
645
|
+
(function (global) {
|
646
|
+
if (global.constructor) {
|
647
|
+
global.Window = global.constructor;
|
648
|
+
} else {
|
649
|
+
(global.Window = global.constructor = new Function('return function Window() {}')()).prototype = this;
|
650
|
+
}
|
651
|
+
}(this));
|
1039
652
|
}
|
1040
|
-
|
1041
|
-
|
653
|
+
|
654
|
+
})
|
655
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
656
|
+
|
657
|
+
// @ts-nocheck
|
658
|
+
|
659
|
+
(function(undefined) {
|
660
|
+
|
661
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Event/detect.js
|
662
|
+
var detect = (
|
663
|
+
(function(global) {
|
664
|
+
|
665
|
+
if (!('Event' in global)) return false;
|
666
|
+
if (typeof global.Event === 'function') return true;
|
667
|
+
|
668
|
+
try {
|
669
|
+
|
670
|
+
// In IE 9-11, the Event object exists but cannot be instantiated
|
671
|
+
new Event('click');
|
672
|
+
return true;
|
673
|
+
} catch(e) {
|
674
|
+
return false;
|
675
|
+
}
|
676
|
+
}(this))
|
677
|
+
);
|
678
|
+
|
679
|
+
if (detect) return
|
680
|
+
|
681
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Event&flags=always
|
682
|
+
(function () {
|
683
|
+
var unlistenableWindowEvents = {
|
684
|
+
click: 1,
|
685
|
+
dblclick: 1,
|
686
|
+
keyup: 1,
|
687
|
+
keypress: 1,
|
688
|
+
keydown: 1,
|
689
|
+
mousedown: 1,
|
690
|
+
mouseup: 1,
|
691
|
+
mousemove: 1,
|
692
|
+
mouseover: 1,
|
693
|
+
mouseenter: 1,
|
694
|
+
mouseleave: 1,
|
695
|
+
mouseout: 1,
|
696
|
+
storage: 1,
|
697
|
+
storagecommit: 1,
|
698
|
+
textinput: 1
|
699
|
+
};
|
700
|
+
|
701
|
+
// This polyfill depends on availability of `document` so will not run in a worker
|
702
|
+
// However, we asssume there are no browsers with worker support that lack proper
|
703
|
+
// support for `Event` within the worker
|
704
|
+
if (typeof document === 'undefined' || typeof window === 'undefined') return;
|
705
|
+
|
706
|
+
function indexOf(array, element) {
|
707
|
+
var
|
708
|
+
index = -1,
|
709
|
+
length = array.length;
|
710
|
+
|
711
|
+
while (++index < length) {
|
712
|
+
if (index in array && array[index] === element) {
|
713
|
+
return index;
|
714
|
+
}
|
715
|
+
}
|
716
|
+
|
717
|
+
return -1;
|
718
|
+
}
|
719
|
+
|
720
|
+
var existingProto = (window.Event && window.Event.prototype) || null;
|
721
|
+
window.Event = Window.prototype.Event = function Event(type, eventInitDict) {
|
722
|
+
if (!type) {
|
723
|
+
throw new Error('Not enough arguments');
|
724
|
+
}
|
725
|
+
|
726
|
+
var event;
|
727
|
+
// Shortcut if browser supports createEvent
|
728
|
+
if ('createEvent' in document) {
|
729
|
+
event = document.createEvent('Event');
|
730
|
+
var bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
|
731
|
+
var cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
|
732
|
+
|
733
|
+
event.initEvent(type, bubbles, cancelable);
|
734
|
+
|
735
|
+
return event;
|
736
|
+
}
|
737
|
+
|
738
|
+
event = document.createEventObject();
|
739
|
+
|
740
|
+
event.type = type;
|
741
|
+
event.bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
|
742
|
+
event.cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
|
743
|
+
|
744
|
+
return event;
|
745
|
+
};
|
746
|
+
if (existingProto) {
|
747
|
+
Object.defineProperty(window.Event, 'prototype', {
|
748
|
+
configurable: false,
|
749
|
+
enumerable: false,
|
750
|
+
writable: true,
|
751
|
+
value: existingProto
|
752
|
+
});
|
753
|
+
}
|
754
|
+
|
755
|
+
if (!('createEvent' in document)) {
|
756
|
+
window.addEventListener = Window.prototype.addEventListener = Document.prototype.addEventListener = Element.prototype.addEventListener = function addEventListener() {
|
757
|
+
var
|
758
|
+
element = this,
|
759
|
+
type = arguments[0],
|
760
|
+
listener = arguments[1];
|
761
|
+
|
762
|
+
if (element === window && type in unlistenableWindowEvents) {
|
763
|
+
throw new Error('In IE8 the event: ' + type + ' is not available on the window object. Please see https://github.com/Financial-Times/polyfill-service/issues/317 for more information.');
|
764
|
+
}
|
765
|
+
|
766
|
+
if (!element._events) {
|
767
|
+
element._events = {};
|
768
|
+
}
|
769
|
+
|
770
|
+
if (!element._events[type]) {
|
771
|
+
element._events[type] = function (event) {
|
772
|
+
var
|
773
|
+
list = element._events[event.type].list,
|
774
|
+
events = list.slice(),
|
775
|
+
index = -1,
|
776
|
+
length = events.length,
|
777
|
+
eventElement;
|
778
|
+
|
779
|
+
event.preventDefault = function preventDefault() {
|
780
|
+
if (event.cancelable !== false) {
|
781
|
+
event.returnValue = false;
|
782
|
+
}
|
783
|
+
};
|
784
|
+
|
785
|
+
event.stopPropagation = function stopPropagation() {
|
786
|
+
event.cancelBubble = true;
|
787
|
+
};
|
788
|
+
|
789
|
+
event.stopImmediatePropagation = function stopImmediatePropagation() {
|
790
|
+
event.cancelBubble = true;
|
791
|
+
event.cancelImmediate = true;
|
792
|
+
};
|
793
|
+
|
794
|
+
event.currentTarget = element;
|
795
|
+
event.relatedTarget = event.fromElement || null;
|
796
|
+
event.target = event.target || event.srcElement || element;
|
797
|
+
event.timeStamp = new Date().getTime();
|
798
|
+
|
799
|
+
if (event.clientX) {
|
800
|
+
event.pageX = event.clientX + document.documentElement.scrollLeft;
|
801
|
+
event.pageY = event.clientY + document.documentElement.scrollTop;
|
802
|
+
}
|
803
|
+
|
804
|
+
while (++index < length && !event.cancelImmediate) {
|
805
|
+
if (index in events) {
|
806
|
+
eventElement = events[index];
|
807
|
+
|
808
|
+
if (indexOf(list, eventElement) !== -1 && typeof eventElement === 'function') {
|
809
|
+
eventElement.call(element, event);
|
810
|
+
}
|
811
|
+
}
|
812
|
+
}
|
813
|
+
};
|
814
|
+
|
815
|
+
element._events[type].list = [];
|
816
|
+
|
817
|
+
if (element.attachEvent) {
|
818
|
+
element.attachEvent('on' + type, element._events[type]);
|
819
|
+
}
|
820
|
+
}
|
821
|
+
|
822
|
+
element._events[type].list.push(listener);
|
823
|
+
};
|
824
|
+
|
825
|
+
window.removeEventListener = Window.prototype.removeEventListener = Document.prototype.removeEventListener = Element.prototype.removeEventListener = function removeEventListener() {
|
826
|
+
var
|
827
|
+
element = this,
|
828
|
+
type = arguments[0],
|
829
|
+
listener = arguments[1],
|
830
|
+
index;
|
831
|
+
|
832
|
+
if (element._events && element._events[type] && element._events[type].list) {
|
833
|
+
index = indexOf(element._events[type].list, listener);
|
834
|
+
|
835
|
+
if (index !== -1) {
|
836
|
+
element._events[type].list.splice(index, 1);
|
837
|
+
|
838
|
+
if (!element._events[type].list.length) {
|
839
|
+
if (element.detachEvent) {
|
840
|
+
element.detachEvent('on' + type, element._events[type]);
|
841
|
+
}
|
842
|
+
delete element._events[type];
|
843
|
+
}
|
844
|
+
}
|
845
|
+
}
|
846
|
+
};
|
847
|
+
|
848
|
+
window.dispatchEvent = Window.prototype.dispatchEvent = Document.prototype.dispatchEvent = Element.prototype.dispatchEvent = function dispatchEvent(event) {
|
849
|
+
if (!arguments.length) {
|
850
|
+
throw new Error('Not enough arguments');
|
851
|
+
}
|
852
|
+
|
853
|
+
if (!event || typeof event.type !== 'string') {
|
854
|
+
throw new Error('DOM Events Exception 0');
|
855
|
+
}
|
856
|
+
|
857
|
+
var element = this, type = event.type;
|
858
|
+
|
859
|
+
try {
|
860
|
+
if (!event.bubbles) {
|
861
|
+
event.cancelBubble = true;
|
862
|
+
|
863
|
+
var cancelBubbleEvent = function (event) {
|
864
|
+
event.cancelBubble = true;
|
865
|
+
|
866
|
+
(element || window).detachEvent('on' + type, cancelBubbleEvent);
|
867
|
+
};
|
868
|
+
|
869
|
+
this.attachEvent('on' + type, cancelBubbleEvent);
|
870
|
+
}
|
871
|
+
|
872
|
+
this.fireEvent('on' + type, event);
|
873
|
+
} catch (error) {
|
874
|
+
event.target = element;
|
875
|
+
|
876
|
+
do {
|
877
|
+
event.currentTarget = element;
|
878
|
+
|
879
|
+
if ('_events' in element && typeof element._events[type] === 'function') {
|
880
|
+
element._events[type].call(element, event);
|
881
|
+
}
|
882
|
+
|
883
|
+
if (typeof element['on' + type] === 'function') {
|
884
|
+
element['on' + type].call(element, event);
|
885
|
+
}
|
886
|
+
|
887
|
+
element = element.nodeType === 9 ? element.parentWindow : element.parentNode;
|
888
|
+
} while (element && !event.cancelBubble);
|
889
|
+
}
|
890
|
+
|
891
|
+
return true;
|
892
|
+
};
|
893
|
+
|
894
|
+
// Add the DOMContentLoaded Event
|
895
|
+
document.attachEvent('onreadystatechange', function() {
|
896
|
+
if (document.readyState === 'complete') {
|
897
|
+
document.dispatchEvent(new Event('DOMContentLoaded', {
|
898
|
+
bubbles: true
|
899
|
+
}));
|
900
|
+
}
|
901
|
+
});
|
902
|
+
}
|
903
|
+
}());
|
904
|
+
|
905
|
+
})
|
906
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
907
|
+
|
908
|
+
// @ts-nocheck
|
909
|
+
|
910
|
+
(function(undefined) {
|
911
|
+
// Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Function/prototype/bind/detect.js
|
912
|
+
var detect = 'bind' in Function.prototype;
|
913
|
+
|
914
|
+
if (detect) return
|
915
|
+
|
916
|
+
// Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Function.prototype.bind&flags=always
|
917
|
+
Object.defineProperty(Function.prototype, 'bind', {
|
918
|
+
value: function bind(that) { // .length is 1
|
919
|
+
// add necessary es5-shim utilities
|
920
|
+
var $Array = Array;
|
921
|
+
var $Object = Object;
|
922
|
+
var ObjectPrototype = $Object.prototype;
|
923
|
+
var ArrayPrototype = $Array.prototype;
|
924
|
+
var Empty = function Empty() {};
|
925
|
+
var to_string = ObjectPrototype.toString;
|
926
|
+
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
927
|
+
var isCallable; /* inlined from https://npmjs.com/is-callable */ var fnToStr = Function.prototype.toString, tryFunctionObject = function tryFunctionObject(value) { try { fnToStr.call(value); return true; } catch (e) { return false; } }, fnClass = '[object Function]', genClass = '[object GeneratorFunction]'; isCallable = function isCallable(value) { if (typeof value !== 'function') { return false; } if (hasToStringTag) { return tryFunctionObject(value); } var strClass = to_string.call(value); return strClass === fnClass || strClass === genClass; };
|
928
|
+
var array_slice = ArrayPrototype.slice;
|
929
|
+
var array_concat = ArrayPrototype.concat;
|
930
|
+
var array_push = ArrayPrototype.push;
|
931
|
+
var max = Math.max;
|
932
|
+
// /add necessary es5-shim utilities
|
933
|
+
|
934
|
+
// 1. Let Target be the this value.
|
935
|
+
var target = this;
|
936
|
+
// 2. If IsCallable(Target) is false, throw a TypeError exception.
|
937
|
+
if (!isCallable(target)) {
|
938
|
+
throw new TypeError('Function.prototype.bind called on incompatible ' + target);
|
939
|
+
}
|
940
|
+
// 3. Let A be a new (possibly empty) internal list of all of the
|
941
|
+
// argument values provided after thisArg (arg1, arg2 etc), in order.
|
942
|
+
// XXX slicedArgs will stand in for "A" if used
|
943
|
+
var args = array_slice.call(arguments, 1); // for normal call
|
944
|
+
// 4. Let F be a new native ECMAScript object.
|
945
|
+
// 11. Set the [[Prototype]] internal property of F to the standard
|
946
|
+
// built-in Function prototype object as specified in 15.3.3.1.
|
947
|
+
// 12. Set the [[Call]] internal property of F as described in
|
948
|
+
// 15.3.4.5.1.
|
949
|
+
// 13. Set the [[Construct]] internal property of F as described in
|
950
|
+
// 15.3.4.5.2.
|
951
|
+
// 14. Set the [[HasInstance]] internal property of F as described in
|
952
|
+
// 15.3.4.5.3.
|
953
|
+
var bound;
|
954
|
+
var binder = function () {
|
955
|
+
|
956
|
+
if (this instanceof bound) {
|
957
|
+
// 15.3.4.5.2 [[Construct]]
|
958
|
+
// When the [[Construct]] internal method of a function object,
|
959
|
+
// F that was created using the bind function is called with a
|
960
|
+
// list of arguments ExtraArgs, the following steps are taken:
|
961
|
+
// 1. Let target be the value of F's [[TargetFunction]]
|
962
|
+
// internal property.
|
963
|
+
// 2. If target has no [[Construct]] internal method, a
|
964
|
+
// TypeError exception is thrown.
|
965
|
+
// 3. Let boundArgs be the value of F's [[BoundArgs]] internal
|
966
|
+
// property.
|
967
|
+
// 4. Let args be a new list containing the same values as the
|
968
|
+
// list boundArgs in the same order followed by the same
|
969
|
+
// values as the list ExtraArgs in the same order.
|
970
|
+
// 5. Return the result of calling the [[Construct]] internal
|
971
|
+
// method of target providing args as the arguments.
|
972
|
+
|
973
|
+
var result = target.apply(
|
974
|
+
this,
|
975
|
+
array_concat.call(args, array_slice.call(arguments))
|
976
|
+
);
|
977
|
+
if ($Object(result) === result) {
|
978
|
+
return result;
|
979
|
+
}
|
980
|
+
return this;
|
981
|
+
|
982
|
+
} else {
|
983
|
+
// 15.3.4.5.1 [[Call]]
|
984
|
+
// When the [[Call]] internal method of a function object, F,
|
985
|
+
// which was created using the bind function is called with a
|
986
|
+
// this value and a list of arguments ExtraArgs, the following
|
987
|
+
// steps are taken:
|
988
|
+
// 1. Let boundArgs be the value of F's [[BoundArgs]] internal
|
989
|
+
// property.
|
990
|
+
// 2. Let boundThis be the value of F's [[BoundThis]] internal
|
991
|
+
// property.
|
992
|
+
// 3. Let target be the value of F's [[TargetFunction]] internal
|
993
|
+
// property.
|
994
|
+
// 4. Let args be a new list containing the same values as the
|
995
|
+
// list boundArgs in the same order followed by the same
|
996
|
+
// values as the list ExtraArgs in the same order.
|
997
|
+
// 5. Return the result of calling the [[Call]] internal method
|
998
|
+
// of target providing boundThis as the this value and
|
999
|
+
// providing args as the arguments.
|
1000
|
+
|
1001
|
+
// equiv: target.call(this, ...boundArgs, ...args)
|
1002
|
+
return target.apply(
|
1003
|
+
that,
|
1004
|
+
array_concat.call(args, array_slice.call(arguments))
|
1005
|
+
);
|
1006
|
+
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
};
|
1010
|
+
|
1011
|
+
// 15. If the [[Class]] internal property of Target is "Function", then
|
1012
|
+
// a. Let L be the length property of Target minus the length of A.
|
1013
|
+
// b. Set the length own property of F to either 0 or L, whichever is
|
1014
|
+
// larger.
|
1015
|
+
// 16. Else set the length own property of F to 0.
|
1016
|
+
|
1017
|
+
var boundLength = max(0, target.length - args.length);
|
1018
|
+
|
1019
|
+
// 17. Set the attributes of the length own property of F to the values
|
1020
|
+
// specified in 15.3.5.1.
|
1021
|
+
var boundArgs = [];
|
1022
|
+
for (var i = 0; i < boundLength; i++) {
|
1023
|
+
array_push.call(boundArgs, '$' + i);
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
// XXX Build a dynamic function with desired amount of arguments is the only
|
1027
|
+
// way to set the length property of a function.
|
1028
|
+
// In environments where Content Security Policies enabled (Chrome extensions,
|
1029
|
+
// for ex.) all use of eval or Function costructor throws an exception.
|
1030
|
+
// However in all of these environments Function.prototype.bind exists
|
1031
|
+
// and so this code will never be executed.
|
1032
|
+
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this, arguments); }')(binder);
|
1033
|
+
|
1034
|
+
if (target.prototype) {
|
1035
|
+
Empty.prototype = target.prototype;
|
1036
|
+
bound.prototype = new Empty();
|
1037
|
+
// Clean up dangling references.
|
1038
|
+
Empty.prototype = null;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
// TODO
|
1042
|
+
// 18. Set the [[Extensible]] internal property of F to true.
|
1043
|
+
|
1044
|
+
// TODO
|
1045
|
+
// 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).
|
1046
|
+
// 20. Call the [[DefineOwnProperty]] internal method of F with
|
1047
|
+
// arguments "caller", PropertyDescriptor {[[Get]]: thrower, [[Set]]:
|
1048
|
+
// thrower, [[Enumerable]]: false, [[Configurable]]: false}, and
|
1049
|
+
// false.
|
1050
|
+
// 21. Call the [[DefineOwnProperty]] internal method of F with
|
1051
|
+
// arguments "arguments", PropertyDescriptor {[[Get]]: thrower,
|
1052
|
+
// [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},
|
1053
|
+
// and false.
|
1054
|
+
|
1055
|
+
// TODO
|
1056
|
+
// NOTE Function objects created using Function.prototype.bind do not
|
1057
|
+
// have a prototype property or the [[Code]], [[FormalParameters]], and
|
1058
|
+
// [[Scope]] internal properties.
|
1059
|
+
// XXX can't delete prototype in pure-js.
|
1060
|
+
|
1061
|
+
// 22. Return F.
|
1062
|
+
return bound;
|
1063
|
+
}
|
1064
|
+
});
|
1065
|
+
})
|
1066
|
+
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
|
1067
|
+
|
1068
|
+
/* eslint-disable es-x/no-function-prototype-bind -- Polyfill imported */
|
1069
|
+
|
1070
|
+
/**
|
1071
|
+
* Radios component
|
1072
|
+
*
|
1073
|
+
* @class
|
1074
|
+
* @param {Element} $module - HTML element to use for radios
|
1075
|
+
*/
|
1076
|
+
function Radios ($module) {
|
1077
|
+
if (!($module instanceof HTMLElement)) {
|
1078
|
+
return this
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
var $inputs = $module.querySelectorAll('input[type="radio"]');
|
1082
|
+
if (!$inputs.length) {
|
1083
|
+
return this
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
/** @deprecated Will be made private in v5.0 */
|
1087
|
+
this.$module = $module;
|
1088
|
+
|
1089
|
+
/** @deprecated Will be made private in v5.0 */
|
1090
|
+
this.$inputs = $inputs;
|
1042
1091
|
}
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
this.$inputs = $module.querySelectorAll('input[type="radio"]');
|
1062
|
-
}
|
1063
|
-
|
1064
|
-
/**
|
1065
|
-
* Initialise Radios
|
1066
|
-
*
|
1067
|
-
* Radios can be associated with a 'conditionally revealed' content block – for
|
1068
|
-
* example, a radio for 'Phone' could reveal an additional form field for the
|
1069
|
-
* user to enter their phone number.
|
1070
|
-
*
|
1071
|
-
* These associations are made using a `data-aria-controls` attribute, which is
|
1072
|
-
* promoted to an aria-controls attribute during initialisation.
|
1073
|
-
*
|
1074
|
-
* We also need to restore the state of any conditional reveals on the page (for
|
1075
|
-
* example if the user has navigated back), and set up event handlers to keep
|
1076
|
-
* the reveal in sync with the radio state.
|
1077
|
-
*/
|
1078
|
-
Radios.prototype.init = function () {
|
1079
|
-
var $module = this.$module;
|
1080
|
-
var $inputs = this.$inputs;
|
1081
|
-
|
1082
|
-
nodeListForEach($inputs, function ($input) {
|
1083
|
-
var target = $input.getAttribute('data-aria-controls');
|
1084
|
-
|
1085
|
-
// Skip radios without data-aria-controls attributes, or where the
|
1086
|
-
// target element does not exist.
|
1087
|
-
if (!target || !document.getElementById(target)) {
|
1092
|
+
|
1093
|
+
/**
|
1094
|
+
* Initialise component
|
1095
|
+
*
|
1096
|
+
* Radios can be associated with a 'conditionally revealed' content block – for
|
1097
|
+
* example, a radio for 'Phone' could reveal an additional form field for the
|
1098
|
+
* user to enter their phone number.
|
1099
|
+
*
|
1100
|
+
* These associations are made using a `data-aria-controls` attribute, which is
|
1101
|
+
* promoted to an aria-controls attribute during initialisation.
|
1102
|
+
*
|
1103
|
+
* We also need to restore the state of any conditional reveals on the page (for
|
1104
|
+
* example if the user has navigated back), and set up event handlers to keep
|
1105
|
+
* the reveal in sync with the radio state.
|
1106
|
+
*/
|
1107
|
+
Radios.prototype.init = function () {
|
1108
|
+
// Check that required elements are present
|
1109
|
+
if (!this.$module || !this.$inputs) {
|
1088
1110
|
return
|
1089
1111
|
}
|
1090
1112
|
|
1091
|
-
|
1092
|
-
|
1093
|
-
$input.setAttribute('aria-controls', target);
|
1094
|
-
$input.removeAttribute('data-aria-controls');
|
1095
|
-
});
|
1096
|
-
|
1097
|
-
// When the page is restored after navigating 'back' in some browsers the
|
1098
|
-
// state of form controls is not restored until *after* the DOMContentLoaded
|
1099
|
-
// event is fired, so we need to sync after the pageshow event in browsers
|
1100
|
-
// that support it.
|
1101
|
-
if ('onpageshow' in window) {
|
1102
|
-
window.addEventListener('pageshow', this.syncAllConditionalReveals.bind(this));
|
1103
|
-
} else {
|
1104
|
-
window.addEventListener('DOMContentLoaded', this.syncAllConditionalReveals.bind(this));
|
1105
|
-
}
|
1113
|
+
var $module = this.$module;
|
1114
|
+
var $inputs = this.$inputs;
|
1106
1115
|
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
}
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
*/
|
1131
|
-
Radios.prototype.syncConditionalRevealWithInputState = function ($input) {
|
1132
|
-
var $target = document.getElementById($input.getAttribute('aria-controls'));
|
1133
|
-
|
1134
|
-
if ($target && $target.classList.contains('govuk-radios__conditional')) {
|
1135
|
-
var inputIsChecked = $input.checked;
|
1136
|
-
|
1137
|
-
$input.setAttribute('aria-expanded', inputIsChecked);
|
1138
|
-
$target.classList.toggle('govuk-radios__conditional--hidden', !inputIsChecked);
|
1139
|
-
}
|
1140
|
-
};
|
1141
|
-
|
1142
|
-
/**
|
1143
|
-
* Click event handler
|
1144
|
-
*
|
1145
|
-
* Handle a click within the $module – if the click occurred on a radio, sync
|
1146
|
-
* the state of the conditional reveal for all radio buttons in the same form
|
1147
|
-
* with the same name (because checking one radio could have un-checked a radio
|
1148
|
-
* in another $module)
|
1149
|
-
*
|
1150
|
-
* @param {MouseEvent} event - Click event
|
1151
|
-
*/
|
1152
|
-
Radios.prototype.handleClick = function (event) {
|
1153
|
-
var $clickedInput = event.target;
|
1154
|
-
|
1155
|
-
// Ignore clicks on things that aren't radio buttons
|
1156
|
-
if ($clickedInput.type !== 'radio') {
|
1157
|
-
return
|
1158
|
-
}
|
1116
|
+
nodeListForEach($inputs, function ($input) {
|
1117
|
+
var targetId = $input.getAttribute('data-aria-controls');
|
1118
|
+
|
1119
|
+
// Skip radios without data-aria-controls attributes, or where the
|
1120
|
+
// target element does not exist.
|
1121
|
+
if (!targetId || !document.getElementById(targetId)) {
|
1122
|
+
return
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
// Promote the data-aria-controls attribute to a aria-controls attribute
|
1126
|
+
// so that the relationship is exposed in the AOM
|
1127
|
+
$input.setAttribute('aria-controls', targetId);
|
1128
|
+
$input.removeAttribute('data-aria-controls');
|
1129
|
+
});
|
1130
|
+
|
1131
|
+
// When the page is restored after navigating 'back' in some browsers the
|
1132
|
+
// state of form controls is not restored until *after* the DOMContentLoaded
|
1133
|
+
// event is fired, so we need to sync after the pageshow event in browsers
|
1134
|
+
// that support it.
|
1135
|
+
window.addEventListener(
|
1136
|
+
'onpageshow' in window ? 'pageshow' : 'DOMContentLoaded',
|
1137
|
+
this.syncAllConditionalReveals.bind(this)
|
1138
|
+
);
|
1159
1139
|
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1140
|
+
// Although we've set up handlers to sync state on the pageshow or
|
1141
|
+
// DOMContentLoaded event, init could be called after those events have fired,
|
1142
|
+
// for example if they are added to the page dynamically, so sync now too.
|
1143
|
+
this.syncAllConditionalReveals();
|
1144
|
+
|
1145
|
+
// Handle events
|
1146
|
+
$module.addEventListener('click', this.handleClick.bind(this));
|
1147
|
+
};
|
1148
|
+
|
1149
|
+
/**
|
1150
|
+
* Sync the conditional reveal states for all radio buttons in this $module.
|
1151
|
+
*
|
1152
|
+
* @deprecated Will be made private in v5.0
|
1153
|
+
*/
|
1154
|
+
Radios.prototype.syncAllConditionalReveals = function () {
|
1155
|
+
nodeListForEach(this.$inputs, this.syncConditionalRevealWithInputState.bind(this));
|
1156
|
+
};
|
1157
|
+
|
1158
|
+
/**
|
1159
|
+
* Sync conditional reveal with the input state
|
1160
|
+
*
|
1161
|
+
* Synchronise the visibility of the conditional reveal, and its accessible
|
1162
|
+
* state, with the input's checked state.
|
1163
|
+
*
|
1164
|
+
* @deprecated Will be made private in v5.0
|
1165
|
+
* @param {HTMLInputElement} $input - Radio input
|
1166
|
+
*/
|
1167
|
+
Radios.prototype.syncConditionalRevealWithInputState = function ($input) {
|
1168
|
+
var targetId = $input.getAttribute('aria-controls');
|
1169
|
+
if (!targetId) {
|
1170
|
+
return
|
1171
|
+
}
|
1163
1172
|
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1173
|
+
var $target = document.getElementById(targetId);
|
1174
|
+
if ($target && $target.classList.contains('govuk-radios__conditional')) {
|
1175
|
+
var inputIsChecked = $input.checked;
|
1167
1176
|
|
1168
|
-
|
1169
|
-
|
1177
|
+
$input.setAttribute('aria-expanded', inputIsChecked.toString());
|
1178
|
+
$target.classList.toggle('govuk-radios__conditional--hidden', !inputIsChecked);
|
1179
|
+
}
|
1180
|
+
};
|
1181
|
+
|
1182
|
+
/**
|
1183
|
+
* Click event handler
|
1184
|
+
*
|
1185
|
+
* Handle a click within the $module – if the click occurred on a radio, sync
|
1186
|
+
* the state of the conditional reveal for all radio buttons in the same form
|
1187
|
+
* with the same name (because checking one radio could have un-checked a radio
|
1188
|
+
* in another $module)
|
1189
|
+
*
|
1190
|
+
* @deprecated Will be made private in v5.0
|
1191
|
+
* @param {MouseEvent} event - Click event
|
1192
|
+
*/
|
1193
|
+
Radios.prototype.handleClick = function (event) {
|
1194
|
+
var $component = this;
|
1195
|
+
var $clickedInput = event.target;
|
1196
|
+
|
1197
|
+
// Ignore clicks on things that aren't radio buttons
|
1198
|
+
if (!($clickedInput instanceof HTMLInputElement) || $clickedInput.type !== 'radio') {
|
1199
|
+
return
|
1170
1200
|
}
|
1171
|
-
}.bind(this));
|
1172
|
-
};
|
1173
1201
|
|
1174
|
-
|
1202
|
+
// We only need to consider radios with conditional reveals, which will have
|
1203
|
+
// aria-controls attributes.
|
1204
|
+
var $allInputs = document.querySelectorAll('input[type="radio"][aria-controls]');
|
1205
|
+
|
1206
|
+
var $clickedInputForm = $clickedInput.form;
|
1207
|
+
var $clickedInputName = $clickedInput.name;
|
1208
|
+
|
1209
|
+
nodeListForEach($allInputs, function ($input) {
|
1210
|
+
var hasSameFormOwner = $input.form === $clickedInputForm;
|
1211
|
+
var hasSameName = $input.name === $clickedInputName;
|
1212
|
+
|
1213
|
+
if (hasSameName && hasSameFormOwner) {
|
1214
|
+
$component.syncConditionalRevealWithInputState($input);
|
1215
|
+
}
|
1216
|
+
});
|
1217
|
+
};
|
1218
|
+
|
1219
|
+
return Radios;
|
1175
1220
|
|
1176
1221
|
})));
|
1222
|
+
//# sourceMappingURL=radios.js.map
|