govuk_publishing_components 35.11.0 → 35.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-core.js +2 -48
  3. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-form-tracker.js +5 -0
  4. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-link-tracker.js +2 -2
  5. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-schemas.js +51 -5
  6. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-scroll-tracker.js +225 -0
  7. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/init-ga4.js +0 -5
  8. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4.js +1 -0
  9. data/app/views/govuk_publishing_components/components/_attachment.html.erb +3 -1
  10. data/app/views/govuk_publishing_components/components/_tabs.html.erb +30 -14
  11. data/app/views/govuk_publishing_components/components/docs/tabs.yml +25 -2
  12. data/lib/govuk_publishing_components/version.rb +1 -1
  13. data/node_modules/govuk-frontend/govuk/all.js +406 -1
  14. data/node_modules/govuk-frontend/govuk/all.js.map +1 -1
  15. data/node_modules/govuk-frontend/govuk/common/govuk-frontend-version.js +1 -1
  16. data/node_modules/govuk-frontend/govuk/components/_all.scss +2 -1
  17. data/node_modules/govuk-frontend/govuk/components/back-link/_index.scss +8 -0
  18. data/node_modules/govuk-frontend/govuk/components/back-link/fixtures.json +9 -0
  19. data/node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss +12 -0
  20. data/node_modules/govuk-frontend/govuk/components/breadcrumbs/fixtures.json +21 -0
  21. data/node_modules/govuk-frontend/govuk/components/button/_index.scss +41 -3
  22. data/node_modules/govuk-frontend/govuk/components/button/fixtures.json +44 -0
  23. data/node_modules/govuk-frontend/govuk/components/checkboxes/macro-options.json +9 -8
  24. data/node_modules/govuk-frontend/govuk/components/exit-this-page/README.md +15 -0
  25. data/node_modules/govuk-frontend/govuk/components/exit-this-page/_exit-this-page.scss +2 -0
  26. data/node_modules/govuk-frontend/govuk/components/exit-this-page/_index.scss +97 -0
  27. data/node_modules/govuk-frontend/govuk/components/exit-this-page/exit-this-page.js +2120 -0
  28. data/node_modules/govuk-frontend/govuk/components/exit-this-page/exit-this-page.js.map +1 -0
  29. data/node_modules/govuk-frontend/govuk/components/exit-this-page/fixtures.json +50 -0
  30. data/node_modules/govuk-frontend/govuk/components/exit-this-page/macro-options.json +62 -0
  31. data/node_modules/govuk-frontend/govuk/components/exit-this-page/macro.njk +3 -0
  32. data/node_modules/govuk-frontend/govuk/components/exit-this-page/template.njk +16 -0
  33. data/node_modules/govuk-frontend/govuk/components/radios/macro-options.json +9 -8
  34. data/node_modules/govuk-frontend/govuk/core/_govuk-frontend-version.scss +1 -1
  35. data/node_modules/govuk-frontend/govuk/helpers/_visually-hidden.scss +12 -0
  36. data/node_modules/govuk-frontend/govuk/objects/_template.scss +20 -0
  37. data/node_modules/govuk-frontend/govuk-esm/all.mjs +8 -0
  38. data/node_modules/govuk-frontend/govuk-esm/all.mjs.map +1 -1
  39. data/node_modules/govuk-frontend/govuk-esm/common/govuk-frontend-version.mjs +1 -1
  40. data/node_modules/govuk-frontend/govuk-esm/components/exit-this-page/exit-this-page.mjs +406 -0
  41. data/node_modules/govuk-frontend/govuk-esm/components/exit-this-page/exit-this-page.mjs.map +1 -0
  42. data/node_modules/govuk-frontend/govuk-prototype-kit.config.json +4 -0
  43. data/node_modules/govuk-frontend/package.json +4 -2
  44. metadata +14 -2
@@ -0,0 +1,2120 @@
1
+ (function (global, factory) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
3
+ typeof define === 'function' && define.amd ? define('GOVUKFrontend.ExitThisPage', factory) :
4
+ (global.GOVUKFrontend = global.GOVUKFrontend || {}, global.GOVUKFrontend.ExitThisPage = factory());
5
+ }(this, (function () { 'use strict';
6
+
7
+ // @ts-nocheck
8
+ (function (undefined) {
9
+
10
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Object/defineProperty/detect.js
11
+ var detect = (
12
+ // In IE8, defineProperty could only act on DOM elements, so full support
13
+ // for the feature requires the ability to set a property on an arbitrary object
14
+ 'defineProperty' in Object && (function() {
15
+ try {
16
+ var a = {};
17
+ Object.defineProperty(a, 'test', {value:42});
18
+ return true;
19
+ } catch(e) {
20
+ return false
21
+ }
22
+ }())
23
+ );
24
+
25
+ if (detect) return
26
+
27
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Object.defineProperty&flags=always
28
+ (function (nativeDefineProperty) {
29
+
30
+ var supportsAccessors = Object.prototype.hasOwnProperty('__defineGetter__');
31
+ var ERR_ACCESSORS_NOT_SUPPORTED = 'Getters & setters cannot be defined on this javascript engine';
32
+ var ERR_VALUE_ACCESSORS = 'A property cannot both have accessors and be writable or have a value';
33
+
34
+ Object.defineProperty = function defineProperty(object, property, descriptor) {
35
+
36
+ // Where native support exists, assume it
37
+ if (nativeDefineProperty && (object === window || object === document || object === Element.prototype || object instanceof Element)) {
38
+ return nativeDefineProperty(object, property, descriptor);
39
+ }
40
+
41
+ if (object === null || !(object instanceof Object || typeof object === 'object')) {
42
+ throw new TypeError('Object.defineProperty called on non-object');
43
+ }
44
+
45
+ if (!(descriptor instanceof Object)) {
46
+ throw new TypeError('Property description must be an object');
47
+ }
48
+
49
+ var propertyString = String(property);
50
+ var hasValueOrWritable = 'value' in descriptor || 'writable' in descriptor;
51
+ var getterType = 'get' in descriptor && typeof descriptor.get;
52
+ var setterType = 'set' in descriptor && typeof descriptor.set;
53
+
54
+ // handle descriptor.get
55
+ if (getterType) {
56
+ if (getterType !== 'function') {
57
+ throw new TypeError('Getter must be a function');
58
+ }
59
+ if (!supportsAccessors) {
60
+ throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
61
+ }
62
+ if (hasValueOrWritable) {
63
+ throw new TypeError(ERR_VALUE_ACCESSORS);
64
+ }
65
+ Object.__defineGetter__.call(object, propertyString, descriptor.get);
66
+ } else {
67
+ object[propertyString] = descriptor.value;
68
+ }
69
+
70
+ // handle descriptor.set
71
+ if (setterType) {
72
+ if (setterType !== 'function') {
73
+ throw new TypeError('Setter must be a function');
74
+ }
75
+ if (!supportsAccessors) {
76
+ throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
77
+ }
78
+ if (hasValueOrWritable) {
79
+ throw new TypeError(ERR_VALUE_ACCESSORS);
80
+ }
81
+ Object.__defineSetter__.call(object, propertyString, descriptor.set);
82
+ }
83
+
84
+ // OK to define value unconditionally - if a getter has been specified as well, an error would be thrown above
85
+ if ('value' in descriptor) {
86
+ object[propertyString] = descriptor.value;
87
+ }
88
+
89
+ return object;
90
+ };
91
+ }(Object.defineProperty));
92
+ })
93
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
94
+
95
+ // @ts-nocheck
96
+ (function (undefined) {
97
+
98
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Document/detect.js
99
+ var detect = ("Document" in this);
100
+
101
+ if (detect) return
102
+
103
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Document&flags=always
104
+ if ((typeof WorkerGlobalScope === "undefined") && (typeof importScripts !== "function")) {
105
+
106
+ if (this.HTMLDocument) { // IE8
107
+
108
+ // HTMLDocument is an extension of Document. If the browser has HTMLDocument but not Document, the former will suffice as an alias for the latter.
109
+ this.Document = this.HTMLDocument;
110
+
111
+ } else {
112
+
113
+ // 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.
114
+ this.Document = this.HTMLDocument = document.constructor = (new Function('return function Document() {}')());
115
+ this.Document.prototype = document;
116
+ }
117
+ }
118
+
119
+
120
+ })
121
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
122
+
123
+ // @ts-nocheck
124
+
125
+ (function(undefined) {
126
+
127
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Element/detect.js
128
+ var detect = ('Element' in this && 'HTMLElement' in this);
129
+
130
+ if (detect) return
131
+
132
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Element&flags=always
133
+ (function () {
134
+
135
+ // IE8
136
+ if (window.Element && !window.HTMLElement) {
137
+ window.HTMLElement = window.Element;
138
+ return;
139
+ }
140
+
141
+ // create Element constructor
142
+ window.Element = window.HTMLElement = new Function('return function Element() {}')();
143
+
144
+ // generate sandboxed iframe
145
+ var vbody = document.appendChild(document.createElement('body'));
146
+ var frame = vbody.appendChild(document.createElement('iframe'));
147
+
148
+ // use sandboxed iframe to replicate Element functionality
149
+ var frameDocument = frame.contentWindow.document;
150
+ var prototype = Element.prototype = frameDocument.appendChild(frameDocument.createElement('*'));
151
+ var cache = {};
152
+
153
+ // polyfill Element.prototype on an element
154
+ var shiv = function (element, deep) {
155
+ var
156
+ childNodes = element.childNodes || [],
157
+ index = -1,
158
+ key, value, childNode;
159
+
160
+ if (element.nodeType === 1 && element.constructor !== Element) {
161
+ element.constructor = Element;
162
+
163
+ for (key in cache) {
164
+ value = cache[key];
165
+ element[key] = value;
166
+ }
167
+ }
168
+
169
+ while (childNode = deep && childNodes[++index]) {
170
+ shiv(childNode, deep);
171
+ }
172
+
173
+ return element;
174
+ };
175
+
176
+ var elements = document.getElementsByTagName('*');
177
+ var nativeCreateElement = document.createElement;
178
+ var interval;
179
+ var loopLimit = 100;
180
+
181
+ prototype.attachEvent('onpropertychange', function (event) {
182
+ var
183
+ propertyName = event.propertyName,
184
+ nonValue = !cache.hasOwnProperty(propertyName),
185
+ newValue = prototype[propertyName],
186
+ oldValue = cache[propertyName],
187
+ index = -1,
188
+ element;
189
+
190
+ while (element = elements[++index]) {
191
+ if (element.nodeType === 1) {
192
+ if (nonValue || element[propertyName] === oldValue) {
193
+ element[propertyName] = newValue;
194
+ }
195
+ }
196
+ }
197
+
198
+ cache[propertyName] = newValue;
199
+ });
200
+
201
+ prototype.constructor = Element;
202
+
203
+ if (!prototype.hasAttribute) {
204
+ // <Element>.hasAttribute
205
+ prototype.hasAttribute = function hasAttribute(name) {
206
+ return this.getAttribute(name) !== null;
207
+ };
208
+ }
209
+
210
+ // Apply Element prototype to the pre-existing DOM as soon as the body element appears.
211
+ function bodyCheck() {
212
+ if (!(loopLimit--)) clearTimeout(interval);
213
+ if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
214
+ shiv(document, true);
215
+ if (interval && document.body.prototype) clearTimeout(interval);
216
+ return (!!document.body.prototype);
217
+ }
218
+ return false;
219
+ }
220
+ if (!bodyCheck()) {
221
+ document.onreadystatechange = bodyCheck;
222
+ interval = setInterval(bodyCheck, 25);
223
+ }
224
+
225
+ // Apply to any new elements created after load
226
+ document.createElement = function createElement(nodeName) {
227
+ var element = nativeCreateElement(String(nodeName).toLowerCase());
228
+ return shiv(element);
229
+ };
230
+
231
+ // remove sandboxed iframe
232
+ document.removeChild(vbody);
233
+ }());
234
+
235
+ })
236
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
237
+
238
+ // @ts-nocheck
239
+
240
+ (function(undefined) {
241
+
242
+ // Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-library/13cf7c340974d128d557580b5e2dafcd1b1192d1/polyfills/Element/prototype/dataset/detect.js
243
+ var detect = (function(){
244
+ if (!document.documentElement.dataset) {
245
+ return false;
246
+ }
247
+ var el = document.createElement('div');
248
+ el.setAttribute("data-a-b", "c");
249
+ return el.dataset && el.dataset.aB == "c";
250
+ }());
251
+
252
+ if (detect) return
253
+
254
+ // Polyfill derived from https://raw.githubusercontent.com/Financial-Times/polyfill-library/13cf7c340974d128d557580b5e2dafcd1b1192d1/polyfills/Element/prototype/dataset/polyfill.js
255
+ Object.defineProperty(Element.prototype, 'dataset', {
256
+ get: function() {
257
+ var element = this;
258
+ var attributes = this.attributes;
259
+ var map = {};
260
+
261
+ for (var i = 0; i < attributes.length; i++) {
262
+ var attribute = attributes[i];
263
+
264
+ // This regex has been edited from the original polyfill, to add
265
+ // support for period (.) separators in data-* attribute names. These
266
+ // are allowed in the HTML spec, but were not covered by the original
267
+ // polyfill's regex. We use periods in our i18n implementation.
268
+ if (attribute && attribute.name && (/^data-\w[.\w-]*$/).test(attribute.name)) {
269
+ var name = attribute.name;
270
+ var value = attribute.value;
271
+
272
+ var propName = name.substr(5).replace(/-./g, function (prop) {
273
+ return prop.charAt(1).toUpperCase();
274
+ });
275
+
276
+ // If this browser supports __defineGetter__ and __defineSetter__,
277
+ // continue using defineProperty. If not (like IE 8 and below), we use
278
+ // a hacky fallback which at least gives an object in the right format
279
+ if ('__defineGetter__' in Object.prototype && '__defineSetter__' in Object.prototype) {
280
+ Object.defineProperty(map, propName, {
281
+ enumerable: true,
282
+ get: function() {
283
+ return this.value;
284
+ }.bind({value: value || ''}),
285
+ set: function setter(name, value) {
286
+ if (typeof value !== 'undefined') {
287
+ this.setAttribute(name, value);
288
+ } else {
289
+ this.removeAttribute(name);
290
+ }
291
+ }.bind(element, name)
292
+ });
293
+ } else {
294
+ map[propName] = value;
295
+ }
296
+
297
+ }
298
+ }
299
+
300
+ return map;
301
+ }
302
+ });
303
+
304
+ }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
305
+
306
+ // @ts-nocheck
307
+ (function (undefined) {
308
+
309
+ // Detection from https://github.com/mdn/content/blob/cf607d68522cd35ee7670782d3ee3a361eaef2e4/files/en-us/web/javascript/reference/global_objects/string/trim/index.md#polyfill
310
+ var detect = ('trim' in String.prototype);
311
+
312
+ if (detect) return
313
+
314
+ // Polyfill from https://github.com/mdn/content/blob/cf607d68522cd35ee7670782d3ee3a361eaef2e4/files/en-us/web/javascript/reference/global_objects/string/trim/index.md#polyfill
315
+ String.prototype.trim = function () {
316
+ return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
317
+ };
318
+
319
+ }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
320
+
321
+ /* eslint-disable es-x/no-string-prototype-trim -- Polyfill imported */
322
+
323
+ /**
324
+ * Normalise string
325
+ *
326
+ * 'If it looks like a duck, and it quacks like a duck…' 🦆
327
+ *
328
+ * If the passed value looks like a boolean or a number, convert it to a boolean
329
+ * or number.
330
+ *
331
+ * Designed to be used to convert config passed via data attributes (which are
332
+ * always strings) into something sensible.
333
+ *
334
+ * @deprecated Will be made private in v5.0
335
+ * @param {string} value - The value to normalise
336
+ * @returns {string | boolean | number | undefined} Normalised data
337
+ */
338
+ function normaliseString (value) {
339
+ if (typeof value !== 'string') {
340
+ return value
341
+ }
342
+
343
+ var trimmedValue = value.trim();
344
+
345
+ if (trimmedValue === 'true') {
346
+ return true
347
+ }
348
+
349
+ if (trimmedValue === 'false') {
350
+ return false
351
+ }
352
+
353
+ // Empty / whitespace-only strings are considered finite so we need to check
354
+ // the length of the trimmed string as well
355
+ if (trimmedValue.length > 0 && isFinite(Number(trimmedValue))) {
356
+ return Number(trimmedValue)
357
+ }
358
+
359
+ return value
360
+ }
361
+
362
+ /**
363
+ * Normalise dataset
364
+ *
365
+ * Loop over an object and normalise each value using normaliseData function
366
+ *
367
+ * @deprecated Will be made private in v5.0
368
+ * @param {DOMStringMap} dataset - HTML element dataset
369
+ * @returns {Object<string, unknown>} Normalised dataset
370
+ */
371
+ function normaliseDataset (dataset) {
372
+ /** @type {Object<string, unknown>} */
373
+ var out = {};
374
+
375
+ for (var key in dataset) {
376
+ out[key] = normaliseString(dataset[key]);
377
+ }
378
+
379
+ return out
380
+ }
381
+
382
+ /**
383
+ * Common helpers which do not require polyfill.
384
+ *
385
+ * IMPORTANT: If a helper require a polyfill, please isolate it in its own module
386
+ * so that the polyfill can be properly tree-shaken and does not burden
387
+ * the components that do not need that helper
388
+ *
389
+ * @module common/index
390
+ */
391
+
392
+ /**
393
+ * TODO: Ideally this would be a NodeList.prototype.forEach polyfill
394
+ * This seems to fail in IE8, requires more investigation.
395
+ * See: https://github.com/imagitama/nodelist-foreach-polyfill
396
+ *
397
+ * @deprecated Will be made private in v5.0
398
+ * @template {Node} ElementType
399
+ * @param {NodeListOf<ElementType>} nodes - NodeList from querySelectorAll()
400
+ * @param {nodeListIterator<ElementType>} callback - Callback function to run for each node
401
+ * @returns {void}
402
+ */
403
+ function nodeListForEach (nodes, callback) {
404
+ if (window.NodeList.prototype.forEach) {
405
+ return nodes.forEach(callback)
406
+ }
407
+ for (var i = 0; i < nodes.length; i++) {
408
+ callback.call(window, nodes[i], i, nodes);
409
+ }
410
+ }
411
+
412
+ /**
413
+ * Config flattening function
414
+ *
415
+ * Takes any number of objects, flattens them into namespaced key-value pairs,
416
+ * (e.g. {'i18n.showSection': 'Show section'}) and combines them together, with
417
+ * greatest priority on the LAST item passed in.
418
+ *
419
+ * @deprecated Will be made private in v5.0
420
+ * @returns {Object<string, unknown>} A flattened object of key-value pairs.
421
+ */
422
+ function mergeConfigs (/* configObject1, configObject2, ...configObjects */) {
423
+ /**
424
+ * Function to take nested objects and flatten them to a dot-separated keyed
425
+ * object. Doing this means we don't need to do any deep/recursive merging of
426
+ * each of our objects, nor transform our dataset from a flat list into a
427
+ * nested object.
428
+ *
429
+ * @param {Object<string, unknown>} configObject - Deeply nested object
430
+ * @returns {Object<string, unknown>} Flattened object with dot-separated keys
431
+ */
432
+ var flattenObject = function (configObject) {
433
+ // Prepare an empty return object
434
+ /** @type {Object<string, unknown>} */
435
+ var flattenedObject = {};
436
+
437
+ /**
438
+ * Our flattening function, this is called recursively for each level of
439
+ * depth in the object. At each level we prepend the previous level names to
440
+ * the key using `prefix`.
441
+ *
442
+ * @param {Partial<Object<string, unknown>>} obj - Object to flatten
443
+ * @param {string} [prefix] - Optional dot-separated prefix
444
+ */
445
+ var flattenLoop = function (obj, prefix) {
446
+ // Loop through keys...
447
+ for (var key in obj) {
448
+ // Check to see if this is a prototypical key/value,
449
+ // if it is, skip it.
450
+ if (!Object.prototype.hasOwnProperty.call(obj, key)) {
451
+ continue
452
+ }
453
+ var value = obj[key];
454
+ var prefixedKey = prefix ? prefix + '.' + key : key;
455
+ if (typeof value === 'object') {
456
+ // If the value is a nested object, recurse over that too
457
+ flattenLoop(value, prefixedKey);
458
+ } else {
459
+ // Otherwise, add this value to our return object
460
+ flattenedObject[prefixedKey] = value;
461
+ }
462
+ }
463
+ };
464
+
465
+ // Kick off the recursive loop
466
+ flattenLoop(configObject);
467
+ return flattenedObject
468
+ };
469
+
470
+ // Start with an empty object as our base
471
+ /** @type {Object<string, unknown>} */
472
+ var formattedConfigObject = {};
473
+
474
+ // Loop through each of the remaining passed objects and push their keys
475
+ // one-by-one into configObject. Any duplicate keys will override the existing
476
+ // key with the new value.
477
+ for (var i = 0; i < arguments.length; i++) {
478
+ var obj = flattenObject(arguments[i]);
479
+ for (var key in obj) {
480
+ if (Object.prototype.hasOwnProperty.call(obj, key)) {
481
+ formattedConfigObject[key] = obj[key];
482
+ }
483
+ }
484
+ }
485
+
486
+ return formattedConfigObject
487
+ }
488
+
489
+ /**
490
+ * Extracts keys starting with a particular namespace from a flattened config
491
+ * object, removing the namespace in the process.
492
+ *
493
+ * @deprecated Will be made private in v5.0
494
+ * @param {Object<string, unknown>} configObject - The object to extract key-value pairs from.
495
+ * @param {string} namespace - The namespace to filter keys with.
496
+ * @returns {Object<string, unknown>} Flattened object with dot-separated key namespace removed
497
+ * @throws {Error} Config object required
498
+ * @throws {Error} Namespace string required
499
+ */
500
+ function extractConfigByNamespace (configObject, namespace) {
501
+ // Check we have what we need
502
+ if (!configObject || typeof configObject !== 'object') {
503
+ throw new Error('Provide a `configObject` of type "object".')
504
+ }
505
+
506
+ if (!namespace || typeof namespace !== 'string') {
507
+ throw new Error('Provide a `namespace` of type "string" to filter the `configObject` by.')
508
+ }
509
+
510
+ /** @type {Object<string, unknown>} */
511
+ var newObject = {};
512
+
513
+ for (var key in configObject) {
514
+ // Split the key into parts, using . as our namespace separator
515
+ var keyParts = key.split('.');
516
+ // Check if the first namespace matches the configured namespace
517
+ if (Object.prototype.hasOwnProperty.call(configObject, key) && keyParts[0] === namespace) {
518
+ // Remove the first item (the namespace) from the parts array,
519
+ // but only if there is more than one part (we don't want blank keys!)
520
+ if (keyParts.length > 1) {
521
+ keyParts.shift();
522
+ }
523
+ // Join the remaining parts back together
524
+ var newKey = keyParts.join('.');
525
+ // Add them to our new object
526
+ newObject[newKey] = configObject[key];
527
+ }
528
+ }
529
+ return newObject
530
+ }
531
+
532
+ /**
533
+ * @template {Node} ElementType
534
+ * @callback nodeListIterator
535
+ * @param {ElementType} value - The current node being iterated on
536
+ * @param {number} index - The current index in the iteration
537
+ * @param {NodeListOf<ElementType>} nodes - NodeList from querySelectorAll()
538
+ * @returns {void}
539
+ */
540
+
541
+ // Implementation of common function is gathered in the `common` folder
542
+
543
+ /**
544
+ * Internal support for selecting messages to render, with placeholder
545
+ * interpolation and locale-aware number formatting and pluralisation
546
+ *
547
+ * @class
548
+ * @private
549
+ * @param {Object<string, unknown>} translations - Key-value pairs of the translation strings to use.
550
+ * @param {object} [config] - Configuration options for the function.
551
+ * @param {string} [config.locale] - An overriding locale for the PluralRules functionality.
552
+ */
553
+ function I18n (translations, config) {
554
+ // Make list of translations available throughout function
555
+ this.translations = translations || {};
556
+
557
+ // The locale to use for PluralRules and NumberFormat
558
+ this.locale = (config && config.locale) || document.documentElement.lang || 'en';
559
+ }
560
+
561
+ /**
562
+ * The most used function - takes the key for a given piece of UI text and
563
+ * returns the appropriate string.
564
+ *
565
+ * @param {string} lookupKey - The lookup key of the string to use.
566
+ * @param {Object<string, unknown>} [options] - Any options passed with the translation string, e.g: for string interpolation.
567
+ * @returns {string} The appropriate translation string.
568
+ * @throws {Error} Lookup key required
569
+ * @throws {Error} Options required for `${}` placeholders
570
+ */
571
+ I18n.prototype.t = function (lookupKey, options) {
572
+ if (!lookupKey) {
573
+ // Print a console error if no lookup key has been provided
574
+ throw new Error('i18n: lookup key missing')
575
+ }
576
+
577
+ // If the `count` option is set, determine which plural suffix is needed and
578
+ // change the lookupKey to match. We check to see if it's numeric instead of
579
+ // falsy, as this could legitimately be 0.
580
+ if (options && typeof options.count === 'number') {
581
+ // Get the plural suffix
582
+ lookupKey = lookupKey + '.' + this.getPluralSuffix(lookupKey, options.count);
583
+ }
584
+
585
+ // Fetch the translation string for that lookup key
586
+ var translationString = this.translations[lookupKey];
587
+
588
+ if (typeof translationString === 'string') {
589
+ // Check for ${} placeholders in the translation string
590
+ if (translationString.match(/%{(.\S+)}/)) {
591
+ if (!options) {
592
+ throw new Error('i18n: cannot replace placeholders in string if no option data provided')
593
+ }
594
+
595
+ return this.replacePlaceholders(translationString, options)
596
+ } else {
597
+ return translationString
598
+ }
599
+ } else {
600
+ // If the key wasn't found in our translations object,
601
+ // return the lookup key itself as the fallback
602
+ return lookupKey
603
+ }
604
+ };
605
+
606
+ /**
607
+ * Takes a translation string with placeholders, and replaces the placeholders
608
+ * with the provided data
609
+ *
610
+ * @param {string} translationString - The translation string
611
+ * @param {Object<string, unknown>} options - Any options passed with the translation string, e.g: for string interpolation.
612
+ * @returns {string} The translation string to output, with ${} placeholders replaced
613
+ */
614
+ I18n.prototype.replacePlaceholders = function (translationString, options) {
615
+ /** @type {Intl.NumberFormat | undefined} */
616
+ var formatter;
617
+
618
+ if (this.hasIntlNumberFormatSupport()) {
619
+ formatter = new Intl.NumberFormat(this.locale);
620
+ }
621
+
622
+ return translationString.replace(
623
+ /%{(.\S+)}/g,
624
+
625
+ /**
626
+ * Replace translation string placeholders
627
+ *
628
+ * @param {string} placeholderWithBraces - Placeholder with braces
629
+ * @param {string} placeholderKey - Placeholder key
630
+ * @returns {string} Placeholder value
631
+ */
632
+ function (placeholderWithBraces, placeholderKey) {
633
+ if (Object.prototype.hasOwnProperty.call(options, placeholderKey)) {
634
+ var placeholderValue = options[placeholderKey];
635
+
636
+ // If a user has passed `false` as the value for the placeholder
637
+ // treat it as though the value should not be displayed
638
+ if (placeholderValue === false || (
639
+ typeof placeholderValue !== 'number' &&
640
+ typeof placeholderValue !== 'string')
641
+ ) {
642
+ return ''
643
+ }
644
+
645
+ // If the placeholder's value is a number, localise the number formatting
646
+ if (typeof placeholderValue === 'number') {
647
+ return formatter ? formatter.format(placeholderValue) : placeholderValue.toString()
648
+ }
649
+
650
+ return placeholderValue
651
+ } else {
652
+ throw new Error('i18n: no data found to replace ' + placeholderWithBraces + ' placeholder in string')
653
+ }
654
+ })
655
+ };
656
+
657
+ /**
658
+ * Check to see if the browser supports Intl and Intl.PluralRules.
659
+ *
660
+ * It requires all conditions to be met in order to be supported:
661
+ * - The browser supports the Intl class (true in IE11)
662
+ * - The implementation of Intl supports PluralRules (NOT true in IE11)
663
+ * - The browser/OS has plural rules for the current locale (browser dependent)
664
+ *
665
+ * @returns {boolean} Returns true if all conditions are met. Returns false otherwise.
666
+ */
667
+ I18n.prototype.hasIntlPluralRulesSupport = function () {
668
+ return Boolean(window.Intl && ('PluralRules' in window.Intl && Intl.PluralRules.supportedLocalesOf(this.locale).length))
669
+ };
670
+
671
+ /**
672
+ * Check to see if the browser supports Intl and Intl.NumberFormat.
673
+ *
674
+ * It requires all conditions to be met in order to be supported:
675
+ * - The browser supports the Intl class (true in IE11)
676
+ * - The implementation of Intl supports NumberFormat (also true in IE11)
677
+ * - The browser/OS has number formatting rules for the current locale (browser dependent)
678
+ *
679
+ * @returns {boolean} Returns true if all conditions are met. Returns false otherwise.
680
+ */
681
+ I18n.prototype.hasIntlNumberFormatSupport = function () {
682
+ return Boolean(window.Intl && ('NumberFormat' in window.Intl && Intl.NumberFormat.supportedLocalesOf(this.locale).length))
683
+ };
684
+
685
+ /**
686
+ * Get the appropriate suffix for the plural form.
687
+ *
688
+ * Uses Intl.PluralRules (or our own fallback implementation) to get the
689
+ * 'preferred' form to use for the given count.
690
+ *
691
+ * Checks that a translation has been provided for that plural form – if it
692
+ * hasn't, it'll fall back to the 'other' plural form (unless that doesn't exist
693
+ * either, in which case an error will be thrown)
694
+ *
695
+ * @param {string} lookupKey - The lookup key of the string to use.
696
+ * @param {number} count - Number used to determine which pluralisation to use.
697
+ * @returns {PluralRule} The suffix associated with the correct pluralisation for this locale.
698
+ * @throws {Error} Plural form `.other` required when preferred plural form is missing
699
+ */
700
+ I18n.prototype.getPluralSuffix = function (lookupKey, count) {
701
+ // Validate that the number is actually a number.
702
+ //
703
+ // Number(count) will turn anything that can't be converted to a Number type
704
+ // into 'NaN'. isFinite filters out NaN, as it isn't a finite number.
705
+ count = Number(count);
706
+ if (!isFinite(count)) { return 'other' }
707
+
708
+ var preferredForm;
709
+
710
+ // Check to verify that all the requirements for Intl.PluralRules are met.
711
+ // If so, we can use that instead of our custom implementation. Otherwise,
712
+ // use the hardcoded fallback.
713
+ if (this.hasIntlPluralRulesSupport()) {
714
+ preferredForm = new Intl.PluralRules(this.locale).select(count);
715
+ } else {
716
+ preferredForm = this.selectPluralFormUsingFallbackRules(count);
717
+ }
718
+
719
+ // Use the correct plural form if provided
720
+ if (lookupKey + '.' + preferredForm in this.translations) {
721
+ return preferredForm
722
+ // Fall back to `other` if the plural form is missing, but log a warning
723
+ // to the console
724
+ } else if (lookupKey + '.other' in this.translations) {
725
+ if (console && 'warn' in console) {
726
+ console.warn('i18n: Missing plural form ".' + preferredForm + '" for "' +
727
+ this.locale + '" locale. Falling back to ".other".');
728
+ }
729
+
730
+ return 'other'
731
+ // If the required `other` plural form is missing, all we can do is error
732
+ } else {
733
+ throw new Error(
734
+ 'i18n: Plural form ".other" is required for "' + this.locale + '" locale'
735
+ )
736
+ }
737
+ };
738
+
739
+ /**
740
+ * Get the plural form using our fallback implementation
741
+ *
742
+ * This is split out into a separate function to make it easier to test the
743
+ * fallback behaviour in an environment where Intl.PluralRules exists.
744
+ *
745
+ * @param {number} count - Number used to determine which pluralisation to use.
746
+ * @returns {PluralRule} The pluralisation form for count in this locale.
747
+ */
748
+ I18n.prototype.selectPluralFormUsingFallbackRules = function (count) {
749
+ // Currently our custom code can only handle positive integers, so let's
750
+ // make sure our number is one of those.
751
+ count = Math.abs(Math.floor(count));
752
+
753
+ var ruleset = this.getPluralRulesForLocale();
754
+
755
+ if (ruleset) {
756
+ return I18n.pluralRules[ruleset](count)
757
+ }
758
+
759
+ return 'other'
760
+ };
761
+
762
+ /**
763
+ * Work out which pluralisation rules to use for the current locale
764
+ *
765
+ * The locale may include a regional indicator (such as en-GB), but we don't
766
+ * usually care about this part, as pluralisation rules are usually the same
767
+ * regardless of region. There are exceptions, however, (e.g. Portuguese) so
768
+ * this searches by both the full and shortened locale codes, just to be sure.
769
+ *
770
+ * @returns {string | undefined} The name of the pluralisation rule to use (a key for one
771
+ * of the functions in this.pluralRules)
772
+ */
773
+ I18n.prototype.getPluralRulesForLocale = function () {
774
+ var locale = this.locale;
775
+ var localeShort = locale.split('-')[0];
776
+
777
+ // Look through the plural rules map to find which `pluralRule` is
778
+ // appropriate for our current `locale`.
779
+ for (var pluralRule in I18n.pluralRulesMap) {
780
+ if (Object.prototype.hasOwnProperty.call(I18n.pluralRulesMap, pluralRule)) {
781
+ var languages = I18n.pluralRulesMap[pluralRule];
782
+ for (var i = 0; i < languages.length; i++) {
783
+ if (languages[i] === locale || languages[i] === localeShort) {
784
+ return pluralRule
785
+ }
786
+ }
787
+ }
788
+ }
789
+ };
790
+
791
+ /**
792
+ * Map of plural rules to languages where those rules apply.
793
+ *
794
+ * Note: These groups are named for the most dominant or recognisable language
795
+ * that uses each system. The groupings do not imply that the languages are
796
+ * related to one another. Many languages have evolved the same systems
797
+ * independently of one another.
798
+ *
799
+ * Code to support more languages can be found in the i18n spike:
800
+ * {@link https://github.com/alphagov/govuk-frontend/blob/spike-i18n-support/src/govuk/i18n.mjs}
801
+ *
802
+ * Languages currently supported:
803
+ *
804
+ * Arabic: Arabic (ar)
805
+ * Chinese: Burmese (my), Chinese (zh), Indonesian (id), Japanese (ja),
806
+ * Javanese (jv), Korean (ko), Malay (ms), Thai (th), Vietnamese (vi)
807
+ * French: Armenian (hy), Bangla (bn), French (fr), Gujarati (gu), Hindi (hi),
808
+ * Persian Farsi (fa), Punjabi (pa), Zulu (zu)
809
+ * German: Afrikaans (af), Albanian (sq), Azerbaijani (az), Basque (eu),
810
+ * Bulgarian (bg), Catalan (ca), Danish (da), Dutch (nl), English (en),
811
+ * Estonian (et), Finnish (fi), Georgian (ka), German (de), Greek (el),
812
+ * Hungarian (hu), Luxembourgish (lb), Norwegian (no), Somali (so),
813
+ * Swahili (sw), Swedish (sv), Tamil (ta), Telugu (te), Turkish (tr),
814
+ * Urdu (ur)
815
+ * Irish: Irish Gaelic (ga)
816
+ * Russian: Russian (ru), Ukrainian (uk)
817
+ * Scottish: Scottish Gaelic (gd)
818
+ * Spanish: European Portuguese (pt-PT), Italian (it), Spanish (es)
819
+ * Welsh: Welsh (cy)
820
+ *
821
+ * @type {Object<string, string[]>}
822
+ */
823
+ I18n.pluralRulesMap = {
824
+ arabic: ['ar'],
825
+ chinese: ['my', 'zh', 'id', 'ja', 'jv', 'ko', 'ms', 'th', 'vi'],
826
+ french: ['hy', 'bn', 'fr', 'gu', 'hi', 'fa', 'pa', 'zu'],
827
+ german: [
828
+ 'af', 'sq', 'az', 'eu', 'bg', 'ca', 'da', 'nl', 'en', 'et', 'fi', 'ka',
829
+ 'de', 'el', 'hu', 'lb', 'no', 'so', 'sw', 'sv', 'ta', 'te', 'tr', 'ur'
830
+ ],
831
+ irish: ['ga'],
832
+ russian: ['ru', 'uk'],
833
+ scottish: ['gd'],
834
+ spanish: ['pt-PT', 'it', 'es'],
835
+ welsh: ['cy']
836
+ };
837
+
838
+ /**
839
+ * Different pluralisation rule sets
840
+ *
841
+ * Returns the appropriate suffix for the plural form associated with `n`.
842
+ * Possible suffixes: 'zero', 'one', 'two', 'few', 'many', 'other' (the actual
843
+ * meaning of each differs per locale). 'other' should always exist, even in
844
+ * languages without plurals, such as Chinese.
845
+ * {@link https://cldr.unicode.org/index/cldr-spec/plural-rules}
846
+ *
847
+ * The count must be a positive integer. Negative numbers and decimals aren't accounted for
848
+ *
849
+ * @type {Object<string, function(number): PluralRule>}
850
+ */
851
+ I18n.pluralRules = {
852
+ /* eslint-disable jsdoc/require-jsdoc */
853
+ arabic: function (n) {
854
+ if (n === 0) { return 'zero' }
855
+ if (n === 1) { return 'one' }
856
+ if (n === 2) { return 'two' }
857
+ if (n % 100 >= 3 && n % 100 <= 10) { return 'few' }
858
+ if (n % 100 >= 11 && n % 100 <= 99) { return 'many' }
859
+ return 'other'
860
+ },
861
+ chinese: function () {
862
+ return 'other'
863
+ },
864
+ french: function (n) {
865
+ return n === 0 || n === 1 ? 'one' : 'other'
866
+ },
867
+ german: function (n) {
868
+ return n === 1 ? 'one' : 'other'
869
+ },
870
+ irish: function (n) {
871
+ if (n === 1) { return 'one' }
872
+ if (n === 2) { return 'two' }
873
+ if (n >= 3 && n <= 6) { return 'few' }
874
+ if (n >= 7 && n <= 10) { return 'many' }
875
+ return 'other'
876
+ },
877
+ russian: function (n) {
878
+ var lastTwo = n % 100;
879
+ var last = lastTwo % 10;
880
+ if (last === 1 && lastTwo !== 11) { return 'one' }
881
+ if (last >= 2 && last <= 4 && !(lastTwo >= 12 && lastTwo <= 14)) { return 'few' }
882
+ if (last === 0 || (last >= 5 && last <= 9) || (lastTwo >= 11 && lastTwo <= 14)) { return 'many' }
883
+ // Note: The 'other' suffix is only used by decimal numbers in Russian.
884
+ // We don't anticipate it being used, but it's here for consistency.
885
+ return 'other'
886
+ },
887
+ scottish: function (n) {
888
+ if (n === 1 || n === 11) { return 'one' }
889
+ if (n === 2 || n === 12) { return 'two' }
890
+ if ((n >= 3 && n <= 10) || (n >= 13 && n <= 19)) { return 'few' }
891
+ return 'other'
892
+ },
893
+ spanish: function (n) {
894
+ if (n === 1) { return 'one' }
895
+ if (n % 1000000 === 0 && n !== 0) { return 'many' }
896
+ return 'other'
897
+ },
898
+ welsh: function (n) {
899
+ if (n === 0) { return 'zero' }
900
+ if (n === 1) { return 'one' }
901
+ if (n === 2) { return 'two' }
902
+ if (n === 3) { return 'few' }
903
+ if (n === 6) { return 'many' }
904
+ return 'other'
905
+ }
906
+ /* eslint-enable jsdoc/require-jsdoc */
907
+ };
908
+
909
+ /**
910
+ * Plural rule category mnemonic tags
911
+ *
912
+ * @typedef {'zero' | 'one' | 'two' | 'few' | 'many' | 'other'} PluralRule
913
+ */
914
+
915
+ /**
916
+ * Translated message by plural rule they correspond to.
917
+ *
918
+ * Allows to group pluralised messages under a single key when passing
919
+ * translations to a component's constructor
920
+ *
921
+ * @typedef {object} TranslationPluralForms
922
+ * @property {string} [other] - General plural form
923
+ * @property {string} [zero] - Plural form used with 0
924
+ * @property {string} [one] - Plural form used with 1
925
+ * @property {string} [two] - Plural form used with 2
926
+ * @property {string} [few] - Plural form used for a few
927
+ * @property {string} [many] - Plural form used for many
928
+ */
929
+
930
+ // @ts-nocheck
931
+ (function (undefined) {
932
+
933
+ // Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-service/master/packages/polyfill-library/polyfills/DOMTokenList/detect.js
934
+ var detect = (
935
+ 'DOMTokenList' in this && (function (x) {
936
+ return 'classList' in x ? !x.classList.toggle('x', false) && !x.className : true;
937
+ })(document.createElement('x'))
938
+ );
939
+
940
+ if (detect) return
941
+
942
+ // Polyfill from https://raw.githubusercontent.com/Financial-Times/polyfill-service/master/packages/polyfill-library/polyfills/DOMTokenList/polyfill.js
943
+ (function (global) {
944
+ var nativeImpl = "DOMTokenList" in global && global.DOMTokenList;
945
+
946
+ if (
947
+ !nativeImpl ||
948
+ (
949
+ !!document.createElementNS &&
950
+ !!document.createElementNS('http://www.w3.org/2000/svg', 'svg') &&
951
+ !(document.createElementNS("http://www.w3.org/2000/svg", "svg").classList instanceof DOMTokenList)
952
+ )
953
+ ) {
954
+ global.DOMTokenList = (function() { // eslint-disable-line no-unused-vars
955
+ var dpSupport = true;
956
+ var defineGetter = function (object, name, fn, configurable) {
957
+ if (Object.defineProperty)
958
+ Object.defineProperty(object, name, {
959
+ configurable: false === dpSupport ? true : !!configurable,
960
+ get: fn
961
+ });
962
+
963
+ else object.__defineGetter__(name, fn);
964
+ };
965
+
966
+ /** Ensure the browser allows Object.defineProperty to be used on native JavaScript objects. */
967
+ try {
968
+ defineGetter({}, "support");
969
+ }
970
+ catch (e) {
971
+ dpSupport = false;
972
+ }
973
+
974
+
975
+ var _DOMTokenList = function (el, prop) {
976
+ var that = this;
977
+ var tokens = [];
978
+ var tokenMap = {};
979
+ var length = 0;
980
+ var maxLength = 0;
981
+ var addIndexGetter = function (i) {
982
+ defineGetter(that, i, function () {
983
+ preop();
984
+ return tokens[i];
985
+ }, false);
986
+
987
+ };
988
+ var reindex = function () {
989
+
990
+ /** Define getter functions for array-like access to the tokenList's contents. */
991
+ if (length >= maxLength)
992
+ for (; maxLength < length; ++maxLength) {
993
+ addIndexGetter(maxLength);
994
+ }
995
+ };
996
+
997
+ /** Helper function called at the start of each class method. Internal use only. */
998
+ var preop = function () {
999
+ var error;
1000
+ var i;
1001
+ var args = arguments;
1002
+ var rSpace = /\s+/;
1003
+
1004
+ /** Validate the token/s passed to an instance method, if any. */
1005
+ if (args.length)
1006
+ for (i = 0; i < args.length; ++i)
1007
+ if (rSpace.test(args[i])) {
1008
+ error = new SyntaxError('String "' + args[i] + '" ' + "contains" + ' an invalid character');
1009
+ error.code = 5;
1010
+ error.name = "InvalidCharacterError";
1011
+ throw error;
1012
+ }
1013
+
1014
+
1015
+ /** Split the new value apart by whitespace*/
1016
+ if (typeof el[prop] === "object") {
1017
+ tokens = ("" + el[prop].baseVal).replace(/^\s+|\s+$/g, "").split(rSpace);
1018
+ } else {
1019
+ tokens = ("" + el[prop]).replace(/^\s+|\s+$/g, "").split(rSpace);
1020
+ }
1021
+
1022
+ /** Avoid treating blank strings as single-item token lists */
1023
+ if ("" === tokens[0]) tokens = [];
1024
+
1025
+ /** Repopulate the internal token lists */
1026
+ tokenMap = {};
1027
+ for (i = 0; i < tokens.length; ++i)
1028
+ tokenMap[tokens[i]] = true;
1029
+ length = tokens.length;
1030
+ reindex();
1031
+ };
1032
+
1033
+ /** Populate our internal token list if the targeted attribute of the subject element isn't empty. */
1034
+ preop();
1035
+
1036
+ /** Return the number of tokens in the underlying string. Read-only. */
1037
+ defineGetter(that, "length", function () {
1038
+ preop();
1039
+ return length;
1040
+ });
1041
+
1042
+ /** Override the default toString/toLocaleString methods to return a space-delimited list of tokens when typecast. */
1043
+ that.toLocaleString =
1044
+ that.toString = function () {
1045
+ preop();
1046
+ return tokens.join(" ");
1047
+ };
1048
+
1049
+ that.item = function (idx) {
1050
+ preop();
1051
+ return tokens[idx];
1052
+ };
1053
+
1054
+ that.contains = function (token) {
1055
+ preop();
1056
+ return !!tokenMap[token];
1057
+ };
1058
+
1059
+ that.add = function () {
1060
+ preop.apply(that, args = arguments);
1061
+
1062
+ for (var args, token, i = 0, l = args.length; i < l; ++i) {
1063
+ token = args[i];
1064
+ if (!tokenMap[token]) {
1065
+ tokens.push(token);
1066
+ tokenMap[token] = true;
1067
+ }
1068
+ }
1069
+
1070
+ /** Update the targeted attribute of the attached element if the token list's changed. */
1071
+ if (length !== tokens.length) {
1072
+ length = tokens.length >>> 0;
1073
+ if (typeof el[prop] === "object") {
1074
+ el[prop].baseVal = tokens.join(" ");
1075
+ } else {
1076
+ el[prop] = tokens.join(" ");
1077
+ }
1078
+ reindex();
1079
+ }
1080
+ };
1081
+
1082
+ that.remove = function () {
1083
+ preop.apply(that, args = arguments);
1084
+
1085
+ /** Build a hash of token names to compare against when recollecting our token list. */
1086
+ for (var args, ignore = {}, i = 0, t = []; i < args.length; ++i) {
1087
+ ignore[args[i]] = true;
1088
+ delete tokenMap[args[i]];
1089
+ }
1090
+
1091
+ /** Run through our tokens list and reassign only those that aren't defined in the hash declared above. */
1092
+ for (i = 0; i < tokens.length; ++i)
1093
+ if (!ignore[tokens[i]]) t.push(tokens[i]);
1094
+
1095
+ tokens = t;
1096
+ length = t.length >>> 0;
1097
+
1098
+ /** Update the targeted attribute of the attached element. */
1099
+ if (typeof el[prop] === "object") {
1100
+ el[prop].baseVal = tokens.join(" ");
1101
+ } else {
1102
+ el[prop] = tokens.join(" ");
1103
+ }
1104
+ reindex();
1105
+ };
1106
+
1107
+ that.toggle = function (token, force) {
1108
+ preop.apply(that, [token]);
1109
+
1110
+ /** Token state's being forced. */
1111
+ if (undefined !== force) {
1112
+ if (force) {
1113
+ that.add(token);
1114
+ return true;
1115
+ } else {
1116
+ that.remove(token);
1117
+ return false;
1118
+ }
1119
+ }
1120
+
1121
+ /** Token already exists in tokenList. Remove it, and return FALSE. */
1122
+ if (tokenMap[token]) {
1123
+ that.remove(token);
1124
+ return false;
1125
+ }
1126
+
1127
+ /** Otherwise, add the token and return TRUE. */
1128
+ that.add(token);
1129
+ return true;
1130
+ };
1131
+
1132
+ return that;
1133
+ };
1134
+
1135
+ return _DOMTokenList;
1136
+ }());
1137
+ }
1138
+
1139
+ // Add second argument to native DOMTokenList.toggle() if necessary
1140
+ (function () {
1141
+ var e = document.createElement('span');
1142
+ if (!('classList' in e)) return;
1143
+ e.classList.toggle('x', false);
1144
+ if (!e.classList.contains('x')) return;
1145
+ e.classList.constructor.prototype.toggle = function toggle(token /*, force*/) {
1146
+ var force = arguments[1];
1147
+ if (force === undefined) {
1148
+ var add = !this.contains(token);
1149
+ this[add ? 'add' : 'remove'](token);
1150
+ return add;
1151
+ }
1152
+ force = !!force;
1153
+ this[force ? 'add' : 'remove'](token);
1154
+ return force;
1155
+ };
1156
+ }());
1157
+
1158
+ // Add multiple arguments to native DOMTokenList.add() if necessary
1159
+ (function () {
1160
+ var e = document.createElement('span');
1161
+ if (!('classList' in e)) return;
1162
+ e.classList.add('a', 'b');
1163
+ if (e.classList.contains('b')) return;
1164
+ var native = e.classList.constructor.prototype.add;
1165
+ e.classList.constructor.prototype.add = function () {
1166
+ var args = arguments;
1167
+ var l = arguments.length;
1168
+ for (var i = 0; i < l; i++) {
1169
+ native.call(this, args[i]);
1170
+ }
1171
+ };
1172
+ }());
1173
+
1174
+ // Add multiple arguments to native DOMTokenList.remove() if necessary
1175
+ (function () {
1176
+ var e = document.createElement('span');
1177
+ if (!('classList' in e)) return;
1178
+ e.classList.add('a');
1179
+ e.classList.add('b');
1180
+ e.classList.remove('a', 'b');
1181
+ if (!e.classList.contains('b')) return;
1182
+ var native = e.classList.constructor.prototype.remove;
1183
+ e.classList.constructor.prototype.remove = function () {
1184
+ var args = arguments;
1185
+ var l = arguments.length;
1186
+ for (var i = 0; i < l; i++) {
1187
+ native.call(this, args[i]);
1188
+ }
1189
+ };
1190
+ }());
1191
+
1192
+ }(this));
1193
+
1194
+ }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
1195
+
1196
+ // @ts-nocheck
1197
+
1198
+ (function(undefined) {
1199
+
1200
+ // Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-service/8717a9e04ac7aff99b4980fbedead98036b0929a/packages/polyfill-library/polyfills/Element/prototype/classList/detect.js
1201
+ var detect = (
1202
+ 'document' in this && "classList" in document.documentElement && 'Element' in this && 'classList' in Element.prototype && (function () {
1203
+ var e = document.createElement('span');
1204
+ e.classList.add('a', 'b');
1205
+ return e.classList.contains('b');
1206
+ }())
1207
+ );
1208
+
1209
+ if (detect) return
1210
+
1211
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Element.prototype.classList&flags=always
1212
+ (function (global) {
1213
+ var dpSupport = true;
1214
+ var defineGetter = function (object, name, fn, configurable) {
1215
+ if (Object.defineProperty)
1216
+ Object.defineProperty(object, name, {
1217
+ configurable: false === dpSupport ? true : !!configurable,
1218
+ get: fn
1219
+ });
1220
+
1221
+ else object.__defineGetter__(name, fn);
1222
+ };
1223
+ /** Ensure the browser allows Object.defineProperty to be used on native JavaScript objects. */
1224
+ try {
1225
+ defineGetter({}, "support");
1226
+ }
1227
+ catch (e) {
1228
+ dpSupport = false;
1229
+ }
1230
+ /** Polyfills a property with a DOMTokenList */
1231
+ var addProp = function (o, name, attr) {
1232
+
1233
+ defineGetter(o.prototype, name, function () {
1234
+ var tokenList;
1235
+
1236
+ var THIS = this,
1237
+
1238
+ /** Prevent this from firing twice for some reason. What the hell, IE. */
1239
+ gibberishProperty = "__defineGetter__" + "DEFINE_PROPERTY" + name;
1240
+ if(THIS[gibberishProperty]) return tokenList;
1241
+ THIS[gibberishProperty] = true;
1242
+
1243
+ /**
1244
+ * IE8 can't define properties on native JavaScript objects, so we'll use a dumb hack instead.
1245
+ *
1246
+ * What this is doing is creating a dummy element ("reflection") inside a detached phantom node ("mirror")
1247
+ * that serves as the target of Object.defineProperty instead. While we could simply use the subject HTML
1248
+ * element instead, this would conflict with element types which use indexed properties (such as forms and
1249
+ * select lists).
1250
+ */
1251
+ if (false === dpSupport) {
1252
+
1253
+ var visage;
1254
+ var mirror = addProp.mirror || document.createElement("div");
1255
+ var reflections = mirror.childNodes;
1256
+ var l = reflections.length;
1257
+
1258
+ for (var i = 0; i < l; ++i)
1259
+ if (reflections[i]._R === THIS) {
1260
+ visage = reflections[i];
1261
+ break;
1262
+ }
1263
+
1264
+ /** Couldn't find an element's reflection inside the mirror. Materialise one. */
1265
+ visage || (visage = mirror.appendChild(document.createElement("div")));
1266
+
1267
+ tokenList = DOMTokenList.call(visage, THIS, attr);
1268
+ } else tokenList = new DOMTokenList(THIS, attr);
1269
+
1270
+ defineGetter(THIS, name, function () {
1271
+ return tokenList;
1272
+ });
1273
+ delete THIS[gibberishProperty];
1274
+
1275
+ return tokenList;
1276
+ }, true);
1277
+ };
1278
+
1279
+ addProp(global.Element, "classList", "className");
1280
+ addProp(global.HTMLElement, "classList", "className");
1281
+ addProp(global.HTMLLinkElement, "relList", "rel");
1282
+ addProp(global.HTMLAnchorElement, "relList", "rel");
1283
+ addProp(global.HTMLAreaElement, "relList", "rel");
1284
+ }(this));
1285
+
1286
+ }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
1287
+
1288
+ // @ts-nocheck
1289
+ (function (undefined) {
1290
+
1291
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Window/detect.js
1292
+ var detect = ('Window' in this);
1293
+
1294
+ if (detect) return
1295
+
1296
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Window&flags=always
1297
+ if ((typeof WorkerGlobalScope === "undefined") && (typeof importScripts !== "function")) {
1298
+ (function (global) {
1299
+ if (global.constructor) {
1300
+ global.Window = global.constructor;
1301
+ } else {
1302
+ (global.Window = global.constructor = new Function('return function Window() {}')()).prototype = this;
1303
+ }
1304
+ }(this));
1305
+ }
1306
+
1307
+ })
1308
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
1309
+
1310
+ // @ts-nocheck
1311
+
1312
+ (function(undefined) {
1313
+
1314
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Event/detect.js
1315
+ var detect = (
1316
+ (function(global) {
1317
+
1318
+ if (!('Event' in global)) return false;
1319
+ if (typeof global.Event === 'function') return true;
1320
+
1321
+ try {
1322
+
1323
+ // In IE 9-11, the Event object exists but cannot be instantiated
1324
+ new Event('click');
1325
+ return true;
1326
+ } catch(e) {
1327
+ return false;
1328
+ }
1329
+ }(this))
1330
+ );
1331
+
1332
+ if (detect) return
1333
+
1334
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Event&flags=always
1335
+ (function () {
1336
+ var unlistenableWindowEvents = {
1337
+ click: 1,
1338
+ dblclick: 1,
1339
+ keyup: 1,
1340
+ keypress: 1,
1341
+ keydown: 1,
1342
+ mousedown: 1,
1343
+ mouseup: 1,
1344
+ mousemove: 1,
1345
+ mouseover: 1,
1346
+ mouseenter: 1,
1347
+ mouseleave: 1,
1348
+ mouseout: 1,
1349
+ storage: 1,
1350
+ storagecommit: 1,
1351
+ textinput: 1
1352
+ };
1353
+
1354
+ // This polyfill depends on availability of `document` so will not run in a worker
1355
+ // However, we asssume there are no browsers with worker support that lack proper
1356
+ // support for `Event` within the worker
1357
+ if (typeof document === 'undefined' || typeof window === 'undefined') return;
1358
+
1359
+ function indexOf(array, element) {
1360
+ var
1361
+ index = -1,
1362
+ length = array.length;
1363
+
1364
+ while (++index < length) {
1365
+ if (index in array && array[index] === element) {
1366
+ return index;
1367
+ }
1368
+ }
1369
+
1370
+ return -1;
1371
+ }
1372
+
1373
+ var existingProto = (window.Event && window.Event.prototype) || null;
1374
+ window.Event = Window.prototype.Event = function Event(type, eventInitDict) {
1375
+ if (!type) {
1376
+ throw new Error('Not enough arguments');
1377
+ }
1378
+
1379
+ var event;
1380
+ // Shortcut if browser supports createEvent
1381
+ if ('createEvent' in document) {
1382
+ event = document.createEvent('Event');
1383
+ var bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
1384
+ var cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
1385
+
1386
+ event.initEvent(type, bubbles, cancelable);
1387
+
1388
+ return event;
1389
+ }
1390
+
1391
+ event = document.createEventObject();
1392
+
1393
+ event.type = type;
1394
+ event.bubbles = eventInitDict && eventInitDict.bubbles !== undefined ? eventInitDict.bubbles : false;
1395
+ event.cancelable = eventInitDict && eventInitDict.cancelable !== undefined ? eventInitDict.cancelable : false;
1396
+
1397
+ return event;
1398
+ };
1399
+ if (existingProto) {
1400
+ Object.defineProperty(window.Event, 'prototype', {
1401
+ configurable: false,
1402
+ enumerable: false,
1403
+ writable: true,
1404
+ value: existingProto
1405
+ });
1406
+ }
1407
+
1408
+ if (!('createEvent' in document)) {
1409
+ window.addEventListener = Window.prototype.addEventListener = Document.prototype.addEventListener = Element.prototype.addEventListener = function addEventListener() {
1410
+ var
1411
+ element = this,
1412
+ type = arguments[0],
1413
+ listener = arguments[1];
1414
+
1415
+ if (element === window && type in unlistenableWindowEvents) {
1416
+ 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.');
1417
+ }
1418
+
1419
+ if (!element._events) {
1420
+ element._events = {};
1421
+ }
1422
+
1423
+ if (!element._events[type]) {
1424
+ element._events[type] = function (event) {
1425
+ var
1426
+ list = element._events[event.type].list,
1427
+ events = list.slice(),
1428
+ index = -1,
1429
+ length = events.length,
1430
+ eventElement;
1431
+
1432
+ event.preventDefault = function preventDefault() {
1433
+ if (event.cancelable !== false) {
1434
+ event.returnValue = false;
1435
+ }
1436
+ };
1437
+
1438
+ event.stopPropagation = function stopPropagation() {
1439
+ event.cancelBubble = true;
1440
+ };
1441
+
1442
+ event.stopImmediatePropagation = function stopImmediatePropagation() {
1443
+ event.cancelBubble = true;
1444
+ event.cancelImmediate = true;
1445
+ };
1446
+
1447
+ event.currentTarget = element;
1448
+ event.relatedTarget = event.fromElement || null;
1449
+ event.target = event.target || event.srcElement || element;
1450
+ event.timeStamp = new Date().getTime();
1451
+
1452
+ if (event.clientX) {
1453
+ event.pageX = event.clientX + document.documentElement.scrollLeft;
1454
+ event.pageY = event.clientY + document.documentElement.scrollTop;
1455
+ }
1456
+
1457
+ while (++index < length && !event.cancelImmediate) {
1458
+ if (index in events) {
1459
+ eventElement = events[index];
1460
+
1461
+ if (indexOf(list, eventElement) !== -1 && typeof eventElement === 'function') {
1462
+ eventElement.call(element, event);
1463
+ }
1464
+ }
1465
+ }
1466
+ };
1467
+
1468
+ element._events[type].list = [];
1469
+
1470
+ if (element.attachEvent) {
1471
+ element.attachEvent('on' + type, element._events[type]);
1472
+ }
1473
+ }
1474
+
1475
+ element._events[type].list.push(listener);
1476
+ };
1477
+
1478
+ window.removeEventListener = Window.prototype.removeEventListener = Document.prototype.removeEventListener = Element.prototype.removeEventListener = function removeEventListener() {
1479
+ var
1480
+ element = this,
1481
+ type = arguments[0],
1482
+ listener = arguments[1],
1483
+ index;
1484
+
1485
+ if (element._events && element._events[type] && element._events[type].list) {
1486
+ index = indexOf(element._events[type].list, listener);
1487
+
1488
+ if (index !== -1) {
1489
+ element._events[type].list.splice(index, 1);
1490
+
1491
+ if (!element._events[type].list.length) {
1492
+ if (element.detachEvent) {
1493
+ element.detachEvent('on' + type, element._events[type]);
1494
+ }
1495
+ delete element._events[type];
1496
+ }
1497
+ }
1498
+ }
1499
+ };
1500
+
1501
+ window.dispatchEvent = Window.prototype.dispatchEvent = Document.prototype.dispatchEvent = Element.prototype.dispatchEvent = function dispatchEvent(event) {
1502
+ if (!arguments.length) {
1503
+ throw new Error('Not enough arguments');
1504
+ }
1505
+
1506
+ if (!event || typeof event.type !== 'string') {
1507
+ throw new Error('DOM Events Exception 0');
1508
+ }
1509
+
1510
+ var element = this, type = event.type;
1511
+
1512
+ try {
1513
+ if (!event.bubbles) {
1514
+ event.cancelBubble = true;
1515
+
1516
+ var cancelBubbleEvent = function (event) {
1517
+ event.cancelBubble = true;
1518
+
1519
+ (element || window).detachEvent('on' + type, cancelBubbleEvent);
1520
+ };
1521
+
1522
+ this.attachEvent('on' + type, cancelBubbleEvent);
1523
+ }
1524
+
1525
+ this.fireEvent('on' + type, event);
1526
+ } catch (error) {
1527
+ event.target = element;
1528
+
1529
+ do {
1530
+ event.currentTarget = element;
1531
+
1532
+ if ('_events' in element && typeof element._events[type] === 'function') {
1533
+ element._events[type].call(element, event);
1534
+ }
1535
+
1536
+ if (typeof element['on' + type] === 'function') {
1537
+ element['on' + type].call(element, event);
1538
+ }
1539
+
1540
+ element = element.nodeType === 9 ? element.parentWindow : element.parentNode;
1541
+ } while (element && !event.cancelBubble);
1542
+ }
1543
+
1544
+ return true;
1545
+ };
1546
+
1547
+ // Add the DOMContentLoaded Event
1548
+ document.attachEvent('onreadystatechange', function() {
1549
+ if (document.readyState === 'complete') {
1550
+ document.dispatchEvent(new Event('DOMContentLoaded', {
1551
+ bubbles: true
1552
+ }));
1553
+ }
1554
+ });
1555
+ }
1556
+ }());
1557
+
1558
+ })
1559
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
1560
+
1561
+ // @ts-nocheck
1562
+
1563
+ (function(undefined) {
1564
+ // Detection from https://github.com/Financial-Times/polyfill-service/blob/master/packages/polyfill-library/polyfills/Function/prototype/bind/detect.js
1565
+ var detect = 'bind' in Function.prototype;
1566
+
1567
+ if (detect) return
1568
+
1569
+ // Polyfill from https://cdn.polyfill.io/v2/polyfill.js?features=Function.prototype.bind&flags=always
1570
+ Object.defineProperty(Function.prototype, 'bind', {
1571
+ value: function bind(that) { // .length is 1
1572
+ // add necessary es5-shim utilities
1573
+ var $Array = Array;
1574
+ var $Object = Object;
1575
+ var ObjectPrototype = $Object.prototype;
1576
+ var ArrayPrototype = $Array.prototype;
1577
+ var Empty = function Empty() {};
1578
+ var to_string = ObjectPrototype.toString;
1579
+ var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
1580
+ 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; };
1581
+ var array_slice = ArrayPrototype.slice;
1582
+ var array_concat = ArrayPrototype.concat;
1583
+ var array_push = ArrayPrototype.push;
1584
+ var max = Math.max;
1585
+ // /add necessary es5-shim utilities
1586
+
1587
+ // 1. Let Target be the this value.
1588
+ var target = this;
1589
+ // 2. If IsCallable(Target) is false, throw a TypeError exception.
1590
+ if (!isCallable(target)) {
1591
+ throw new TypeError('Function.prototype.bind called on incompatible ' + target);
1592
+ }
1593
+ // 3. Let A be a new (possibly empty) internal list of all of the
1594
+ // argument values provided after thisArg (arg1, arg2 etc), in order.
1595
+ // XXX slicedArgs will stand in for "A" if used
1596
+ var args = array_slice.call(arguments, 1); // for normal call
1597
+ // 4. Let F be a new native ECMAScript object.
1598
+ // 11. Set the [[Prototype]] internal property of F to the standard
1599
+ // built-in Function prototype object as specified in 15.3.3.1.
1600
+ // 12. Set the [[Call]] internal property of F as described in
1601
+ // 15.3.4.5.1.
1602
+ // 13. Set the [[Construct]] internal property of F as described in
1603
+ // 15.3.4.5.2.
1604
+ // 14. Set the [[HasInstance]] internal property of F as described in
1605
+ // 15.3.4.5.3.
1606
+ var bound;
1607
+ var binder = function () {
1608
+
1609
+ if (this instanceof bound) {
1610
+ // 15.3.4.5.2 [[Construct]]
1611
+ // When the [[Construct]] internal method of a function object,
1612
+ // F that was created using the bind function is called with a
1613
+ // list of arguments ExtraArgs, the following steps are taken:
1614
+ // 1. Let target be the value of F's [[TargetFunction]]
1615
+ // internal property.
1616
+ // 2. If target has no [[Construct]] internal method, a
1617
+ // TypeError exception is thrown.
1618
+ // 3. Let boundArgs be the value of F's [[BoundArgs]] internal
1619
+ // property.
1620
+ // 4. Let args be a new list containing the same values as the
1621
+ // list boundArgs in the same order followed by the same
1622
+ // values as the list ExtraArgs in the same order.
1623
+ // 5. Return the result of calling the [[Construct]] internal
1624
+ // method of target providing args as the arguments.
1625
+
1626
+ var result = target.apply(
1627
+ this,
1628
+ array_concat.call(args, array_slice.call(arguments))
1629
+ );
1630
+ if ($Object(result) === result) {
1631
+ return result;
1632
+ }
1633
+ return this;
1634
+
1635
+ } else {
1636
+ // 15.3.4.5.1 [[Call]]
1637
+ // When the [[Call]] internal method of a function object, F,
1638
+ // which was created using the bind function is called with a
1639
+ // this value and a list of arguments ExtraArgs, the following
1640
+ // steps are taken:
1641
+ // 1. Let boundArgs be the value of F's [[BoundArgs]] internal
1642
+ // property.
1643
+ // 2. Let boundThis be the value of F's [[BoundThis]] internal
1644
+ // property.
1645
+ // 3. Let target be the value of F's [[TargetFunction]] internal
1646
+ // property.
1647
+ // 4. Let args be a new list containing the same values as the
1648
+ // list boundArgs in the same order followed by the same
1649
+ // values as the list ExtraArgs in the same order.
1650
+ // 5. Return the result of calling the [[Call]] internal method
1651
+ // of target providing boundThis as the this value and
1652
+ // providing args as the arguments.
1653
+
1654
+ // equiv: target.call(this, ...boundArgs, ...args)
1655
+ return target.apply(
1656
+ that,
1657
+ array_concat.call(args, array_slice.call(arguments))
1658
+ );
1659
+
1660
+ }
1661
+
1662
+ };
1663
+
1664
+ // 15. If the [[Class]] internal property of Target is "Function", then
1665
+ // a. Let L be the length property of Target minus the length of A.
1666
+ // b. Set the length own property of F to either 0 or L, whichever is
1667
+ // larger.
1668
+ // 16. Else set the length own property of F to 0.
1669
+
1670
+ var boundLength = max(0, target.length - args.length);
1671
+
1672
+ // 17. Set the attributes of the length own property of F to the values
1673
+ // specified in 15.3.5.1.
1674
+ var boundArgs = [];
1675
+ for (var i = 0; i < boundLength; i++) {
1676
+ array_push.call(boundArgs, '$' + i);
1677
+ }
1678
+
1679
+ // XXX Build a dynamic function with desired amount of arguments is the only
1680
+ // way to set the length property of a function.
1681
+ // In environments where Content Security Policies enabled (Chrome extensions,
1682
+ // for ex.) all use of eval or Function costructor throws an exception.
1683
+ // However in all of these environments Function.prototype.bind exists
1684
+ // and so this code will never be executed.
1685
+ bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this, arguments); }')(binder);
1686
+
1687
+ if (target.prototype) {
1688
+ Empty.prototype = target.prototype;
1689
+ bound.prototype = new Empty();
1690
+ // Clean up dangling references.
1691
+ Empty.prototype = null;
1692
+ }
1693
+
1694
+ // TODO
1695
+ // 18. Set the [[Extensible]] internal property of F to true.
1696
+
1697
+ // TODO
1698
+ // 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).
1699
+ // 20. Call the [[DefineOwnProperty]] internal method of F with
1700
+ // arguments "caller", PropertyDescriptor {[[Get]]: thrower, [[Set]]:
1701
+ // thrower, [[Enumerable]]: false, [[Configurable]]: false}, and
1702
+ // false.
1703
+ // 21. Call the [[DefineOwnProperty]] internal method of F with
1704
+ // arguments "arguments", PropertyDescriptor {[[Get]]: thrower,
1705
+ // [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},
1706
+ // and false.
1707
+
1708
+ // TODO
1709
+ // NOTE Function objects created using Function.prototype.bind do not
1710
+ // have a prototype property or the [[Code]], [[FormalParameters]], and
1711
+ // [[Scope]] internal properties.
1712
+ // XXX can't delete prototype in pure-js.
1713
+
1714
+ // 22. Return F.
1715
+ return bound;
1716
+ }
1717
+ });
1718
+ })
1719
+ .call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});
1720
+
1721
+ /* eslint-disable es-x/no-function-prototype-bind -- Polyfill imported */
1722
+
1723
+ /**
1724
+ * @constant
1725
+ * @type {ExitThisPageTranslations}
1726
+ * @see Default value for {@link ExitThisPageConfig.i18n}
1727
+ * @default
1728
+ */
1729
+ var EXIT_THIS_PAGE_TRANSLATIONS = {
1730
+ activated: 'Loading.',
1731
+ timedOut: 'Exit this page expired.',
1732
+ pressTwoMoreTimes: 'Shift, press 2 more times to exit.',
1733
+ pressOneMoreTime: 'Shift, press 1 more time to exit.'
1734
+ };
1735
+
1736
+ /**
1737
+ * Exit This Page component
1738
+ *
1739
+ * @class
1740
+ * @param {HTMLElement} $module - HTML element that wraps the Exit This Page button
1741
+ * @param {ExitThisPageConfig} [config] - Exit This Page config
1742
+ */
1743
+ function ExitThisPage ($module, config) {
1744
+ /** @type {ExitThisPageConfig} */
1745
+ var defaultConfig = {
1746
+ i18n: EXIT_THIS_PAGE_TRANSLATIONS
1747
+ };
1748
+
1749
+ if (!($module instanceof HTMLElement)) {
1750
+ return this
1751
+ }
1752
+
1753
+ var $button = $module.querySelector('.govuk-exit-this-page__button');
1754
+ if (!($button instanceof HTMLElement)) {
1755
+ return this
1756
+ }
1757
+
1758
+ /**
1759
+ * @deprecated Will be made private in v5.0
1760
+ * @type {ExitThisPageConfig}
1761
+ */
1762
+ this.config = mergeConfigs(
1763
+ defaultConfig,
1764
+ config || {},
1765
+ normaliseDataset($module.dataset)
1766
+ );
1767
+
1768
+ this.i18n = new I18n(extractConfigByNamespace(this.config, 'i18n'));
1769
+
1770
+ /** @deprecated Will be made private in v5.0 */
1771
+ this.$module = $module;
1772
+
1773
+ /** @deprecated Will be made private in v5.0 */
1774
+ this.$button = $button;
1775
+
1776
+ /** @deprecated Will be made private in v5.0 */
1777
+ this.$skiplinkButton = document.querySelector('.govuk-js-exit-this-page-skiplink');
1778
+
1779
+ /** @deprecated Will be made private in v5.0 */
1780
+ this.$updateSpan = null;
1781
+
1782
+ /** @deprecated Will be made private in v5.0 */
1783
+ this.$indicatorContainer = null;
1784
+
1785
+ /** @deprecated Will be made private in v5.0 */
1786
+ this.$overlay = null;
1787
+
1788
+ /** @deprecated Will be made private in v5.0 */
1789
+ this.keypressCounter = 0;
1790
+
1791
+ /** @deprecated Will be made private in v5.0 */
1792
+ this.lastKeyWasModified = false;
1793
+
1794
+ /** @deprecated Will be made private in v5.0 */
1795
+ this.timeoutTime = 5000; // milliseconds
1796
+
1797
+ // Store the timeout events so that we can clear them to avoid user keypresses overlapping
1798
+ // setTimeout returns an id that we can use to clear it with clearTimeout,
1799
+ // hence the 'Id' suffix
1800
+
1801
+ /** @deprecated Will be made private in v5.0 */
1802
+ this.keypressTimeoutId = null;
1803
+
1804
+ /** @deprecated Will be made private in v5.0 */
1805
+ this.timeoutMessageId = null;
1806
+ }
1807
+
1808
+ /**
1809
+ * Create the <span> we use for screen reader announcements.
1810
+ *
1811
+ * @deprecated Will be made private in v5.0
1812
+ */
1813
+ ExitThisPage.prototype.initUpdateSpan = function () {
1814
+ this.$updateSpan = document.createElement('span');
1815
+ this.$updateSpan.setAttribute('role', 'status');
1816
+ this.$updateSpan.className = 'govuk-visually-hidden';
1817
+
1818
+ this.$module.appendChild(this.$updateSpan);
1819
+ };
1820
+
1821
+ /**
1822
+ * Create button click handlers.
1823
+ *
1824
+ * @deprecated Will be made private in v5.0
1825
+ */
1826
+ ExitThisPage.prototype.initButtonClickHandler = function () {
1827
+ // Main EtP button
1828
+ this.$button.addEventListener('click', this.handleClick.bind(this));
1829
+
1830
+ // EtP skiplink
1831
+ if (this.$skiplinkButton) {
1832
+ this.$skiplinkButton.addEventListener('click', this.handleClick.bind(this));
1833
+ }
1834
+ };
1835
+
1836
+ /**
1837
+ * Create the HTML for the 'three lights' indicator on the button.
1838
+ *
1839
+ * @deprecated Will be made private in v5.0
1840
+ */
1841
+ ExitThisPage.prototype.buildIndicator = function () {
1842
+ // Build container
1843
+ // Putting `aria-hidden` on it as it won't contain any readable information
1844
+ this.$indicatorContainer = document.createElement('div');
1845
+ this.$indicatorContainer.className = 'govuk-exit-this-page__indicator';
1846
+ this.$indicatorContainer.setAttribute('aria-hidden', 'true');
1847
+
1848
+ // Create three 'lights' and place them within the container
1849
+ for (var i = 0; i < 3; i++) {
1850
+ var $indicator = document.createElement('div');
1851
+ $indicator.className = 'govuk-exit-this-page__indicator-light';
1852
+ this.$indicatorContainer.appendChild($indicator);
1853
+ }
1854
+
1855
+ // Append it all to the module
1856
+ this.$button.appendChild(this.$indicatorContainer);
1857
+ };
1858
+
1859
+ /**
1860
+ * Update whether the lights are visible and which ones are lit up depending on
1861
+ * the value of `keypressCounter`.
1862
+ *
1863
+ * @deprecated Will be made private in v5.0
1864
+ */
1865
+ ExitThisPage.prototype.updateIndicator = function () {
1866
+ // Show or hide the indicator container depending on keypressCounter value
1867
+ if (this.keypressCounter > 0) {
1868
+ this.$indicatorContainer.classList.add('govuk-exit-this-page__indicator--visible');
1869
+ } else {
1870
+ this.$indicatorContainer.classList.remove('govuk-exit-this-page__indicator--visible');
1871
+ }
1872
+
1873
+ // Turn on only the indicators we want on
1874
+ var $indicators = this.$indicatorContainer.querySelectorAll(
1875
+ '.govuk-exit-this-page__indicator-light'
1876
+ );
1877
+ nodeListForEach($indicators, function ($indicator, index) {
1878
+ $indicator.classList.toggle(
1879
+ 'govuk-exit-this-page__indicator-light--on',
1880
+ index < this.keypressCounter
1881
+ );
1882
+ }.bind(this));
1883
+ };
1884
+
1885
+ /**
1886
+ * Initiates the redirection away from the current page.
1887
+ * Includes the loading overlay functionality, which covers the current page with a
1888
+ * white overlay so that the contents are not visible during the loading
1889
+ * process. This is particularly important on slow network connections.
1890
+ *
1891
+ * @deprecated Will be made private in v5.0
1892
+ */
1893
+ ExitThisPage.prototype.exitPage = function () {
1894
+ this.$updateSpan.innerText = '';
1895
+
1896
+ // Blank the page
1897
+ // As well as creating an overlay with text, we also set the body to hidden
1898
+ // to prevent screen reader and sequential navigation users potentially
1899
+ // navigating through the page behind the overlay during loading
1900
+ document.body.classList.add('govuk-exit-this-page-hide-content');
1901
+ this.$overlay = document.createElement('div');
1902
+ this.$overlay.className = 'govuk-exit-this-page-overlay';
1903
+ this.$overlay.setAttribute('role', 'alert');
1904
+
1905
+ // we do these this way round, thus incurring a second paint, because changing
1906
+ // the element text after adding it means that screen readers pick up the
1907
+ // announcement more reliably.
1908
+ document.body.appendChild(this.$overlay);
1909
+ this.$overlay.innerText = this.i18n.t('activated');
1910
+
1911
+ window.location.href = this.$button.getAttribute('href');
1912
+ };
1913
+
1914
+ /**
1915
+ * Pre-activation logic for when the button is clicked/activated via mouse or
1916
+ * pointer.
1917
+ *
1918
+ * We do this to differentiate it from the keyboard activation event because we
1919
+ * need to run `e.preventDefault` as the button or skiplink are both links and we
1920
+ * want to apply some additional logic in `exitPage` before navigating.
1921
+ *
1922
+ * @deprecated Will be made private in v5.0
1923
+ * @param {MouseEvent} event - mouse click event
1924
+ */
1925
+ ExitThisPage.prototype.handleClick = function (event) {
1926
+ event.preventDefault();
1927
+ this.exitPage();
1928
+ };
1929
+
1930
+ /**
1931
+ * Logic for the 'quick escape' keyboard sequence functionality (pressing the
1932
+ * Shift key three times without interruption, within a time limit).
1933
+ *
1934
+ * @deprecated Will be made private in v5.0
1935
+ * @param {KeyboardEvent} event - keyup event
1936
+ */
1937
+ ExitThisPage.prototype.handleKeypress = function (event) {
1938
+ // Detect if the 'Shift' key has been pressed. We want to only do things if it
1939
+ // was pressed by itself and not in a combination with another key—so we keep
1940
+ // track of whether the preceding keyup had shiftKey: true on it, and if it
1941
+ // did, we ignore the next Shift keyup event.
1942
+ //
1943
+ // This works because using Shift as a modifier key (e.g. pressing Shift + A)
1944
+ // will fire TWO keyup events, one for A (with e.shiftKey: true) and the other
1945
+ // for Shift (with e.shiftKey: false).
1946
+ if (
1947
+ (event.key === 'Shift' || event.keyCode === 16 || event.which === 16) &&
1948
+ !this.lastKeyWasModified
1949
+ ) {
1950
+ this.keypressCounter += 1;
1951
+
1952
+ // Update the indicator before the below if statement can reset it back to 0
1953
+ this.updateIndicator();
1954
+
1955
+ // Clear the timeout for the keypress timeout message clearing itself
1956
+ if (this.timeoutMessageId !== null) {
1957
+ clearTimeout(this.timeoutMessageId);
1958
+ this.timeoutMessageId = null;
1959
+ }
1960
+
1961
+ if (this.keypressCounter >= 3) {
1962
+ this.keypressCounter = 0;
1963
+
1964
+ if (this.keypressTimeoutId !== null) {
1965
+ clearTimeout(this.keypressTimeoutId);
1966
+ this.keypressTimeoutId = null;
1967
+ }
1968
+
1969
+ this.exitPage();
1970
+ } else {
1971
+ if (this.keypressCounter === 1) {
1972
+ this.$updateSpan.innerText = this.i18n.t('pressTwoMoreTimes');
1973
+ } else {
1974
+ this.$updateSpan.innerText = this.i18n.t('pressOneMoreTime');
1975
+ }
1976
+ }
1977
+
1978
+ this.setKeypressTimer();
1979
+ } else if (this.keypressTimeoutId !== null) {
1980
+ // If the user pressed any key other than 'Shift', after having pressed
1981
+ // 'Shift' and activating the timer, stop and reset the timer.
1982
+ this.resetKeypressTimer();
1983
+ }
1984
+
1985
+ // Keep track of whether the Shift modifier key was held during this keypress
1986
+ this.lastKeyWasModified = event.shiftKey;
1987
+ };
1988
+
1989
+ /**
1990
+ * Starts the 'quick escape' keyboard sequence timer.
1991
+ *
1992
+ * This can be invoked several times. We want this to be possible so that the
1993
+ * timer is restarted each time the shortcut key is pressed (e.g. the user has
1994
+ * up to n seconds between each keypress, rather than n seconds to invoke the
1995
+ * entire sequence.)
1996
+ *
1997
+ * @deprecated Will be made private in v5.0
1998
+ */
1999
+ ExitThisPage.prototype.setKeypressTimer = function () {
2000
+ // Clear any existing timeout. This is so only one timer is running even if
2001
+ // there are multiple keypresses in quick succession.
2002
+ clearTimeout(this.keypressTimeoutId);
2003
+
2004
+ // Set a fresh timeout
2005
+ this.keypressTimeoutId = setTimeout(
2006
+ this.resetKeypressTimer.bind(this),
2007
+ this.timeoutTime
2008
+ );
2009
+ };
2010
+
2011
+ /**
2012
+ * Stops and resets the 'quick escape' keyboard sequence timer.
2013
+ *
2014
+ * @deprecated Will be made private in v5.0
2015
+ */
2016
+ ExitThisPage.prototype.resetKeypressTimer = function () {
2017
+ clearTimeout(this.keypressTimeoutId);
2018
+ this.keypressTimeoutId = null;
2019
+
2020
+ this.keypressCounter = 0;
2021
+ this.$updateSpan.innerText = this.i18n.t('timedOut');
2022
+
2023
+ this.timeoutMessageId = setTimeout(function () {
2024
+ this.$updateSpan.innerText = '';
2025
+ }.bind(this), this.timeoutTime);
2026
+
2027
+ this.updateIndicator();
2028
+ };
2029
+
2030
+ /**
2031
+ * Reset the page using the EtP button
2032
+ *
2033
+ * We use this in situations where a user may re-enter a page using the browser
2034
+ * back button. In these cases, the browser can choose to restore the state of
2035
+ * the page as it was previously, including restoring the 'ghost page' overlay,
2036
+ * the announcement span having it's role set to "alert" and the keypress
2037
+ * indicator still active, leaving the page in an unusable state.
2038
+ *
2039
+ * By running this check when the page is shown, we can programatically restore
2040
+ * the page and the component to a "default" state
2041
+ *
2042
+ * @deprecated Will be made private in v5.0
2043
+ */
2044
+ ExitThisPage.prototype.resetPage = function () {
2045
+ // If an overlay is set, remove it and reset the value
2046
+ document.body.classList.remove('govuk-exit-this-page-hide-content');
2047
+
2048
+ if (this.$overlay) {
2049
+ this.$overlay.remove();
2050
+ this.$overlay = null;
2051
+ }
2052
+
2053
+ // Ensure the announcement span's role is status, not alert and clear any text
2054
+ this.$updateSpan.setAttribute('role', 'status');
2055
+ this.$updateSpan.innerText = '';
2056
+
2057
+ // Sync the keypress indicator lights
2058
+ this.updateIndicator();
2059
+
2060
+ // If the timeouts are active, clear them
2061
+ if (this.keypressTimeoutId) {
2062
+ clearTimeout(this.keypressTimeoutId);
2063
+ }
2064
+
2065
+ if (this.timeoutMessageId) {
2066
+ clearTimeout(this.timeoutMessageId);
2067
+ }
2068
+ };
2069
+
2070
+ /**
2071
+ * Initialise component
2072
+ */
2073
+ ExitThisPage.prototype.init = function () {
2074
+ this.buildIndicator();
2075
+ this.initUpdateSpan();
2076
+ this.initButtonClickHandler();
2077
+
2078
+ // Check to see if this has already been done by a previous initialisation of ExitThisPage
2079
+ if (!('govukFrontendExitThisPageKeypress' in document.body.dataset)) {
2080
+ document.addEventListener('keyup', this.handleKeypress.bind(this), true);
2081
+ document.body.dataset.govukFrontendExitThisPageKeypress = 'true';
2082
+ }
2083
+
2084
+ // When the page is restored after navigating 'back' in some browsers the
2085
+ // blank overlay remains present, rendering the page unusable. Here, we check
2086
+ // to see if it's present on page (re)load, and remove it if so.
2087
+ window.addEventListener(
2088
+ 'onpageshow' in window ? 'pageshow' : 'DOMContentLoaded',
2089
+ this.resetPage.bind(this)
2090
+ );
2091
+ };
2092
+
2093
+ /**
2094
+ * Exit this Page config
2095
+ *
2096
+ * @typedef {object} ExitThisPageConfig
2097
+ * @property {ExitThisPageTranslations} [i18n = EXIT_THIS_PAGE_TRANSLATIONS] - See constant {@link EXIT_THIS_PAGE_TRANSLATIONS}
2098
+ */
2099
+
2100
+ /**
2101
+ * Exit this Page translations
2102
+ *
2103
+ * @typedef {object} ExitThisPageTranslations
2104
+ *
2105
+ * Messages used by the component programatically inserted text, including
2106
+ * overlay text and screen reader announcements.
2107
+ * @property {string} [activated] - Screen reader announcement for when EtP
2108
+ * keypress functionality has been successfully activated.
2109
+ * @property {string} [timedOut] - Screen reader announcement for when the EtP
2110
+ * keypress functionality has timed out.
2111
+ * @property {string} [pressTwoMoreTimes] - Screen reader announcement informing
2112
+ * the user they must press the activation key two more times.
2113
+ * @property {string} [pressOneMoreTime] - Screen reader announcement informing
2114
+ * the user they must press the activation key one more time.
2115
+ */
2116
+
2117
+ return ExitThisPage;
2118
+
2119
+ })));
2120
+ //# sourceMappingURL=exit-this-page.js.map