@financial-times/n-myft-ui 34.0.1 → 34.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "branch": "",
3
3
  "repo": "n-myft-ui",
4
- "version": "4e19155b865ac3d6d4c3cf10285f267c44dfa940",
5
- "tag": "v34.0.1"
4
+ "version": "94545da9cb4c9a0302f46e185d97f0aec3c17171",
5
+ "tag": "v34.0.2"
6
6
  }
@@ -27,7 +27,14 @@ function toggleButton (buttonEl, state) {
27
27
 
28
28
  if (state !== isPressed) {
29
29
  nextButtons.toggleState(buttonEl);
30
+ const name = buttonEl.getAttribute('data-name');
31
+ if (isPressed) {
32
+ buttonEl.setAttribute('aria-label', 'Alerts ' + name + ' currently disabled, change to enable');
33
+ } else {
34
+ buttonEl.setAttribute('aria-label', 'Alerts ' + name + ' currently enabled, change to disable');
35
+ }
30
36
  }
37
+
31
38
  buttonEl.removeAttribute('disabled');
32
39
  buttonEl.setAttribute('value', !state);
33
40
  }
@@ -13,10 +13,11 @@
13
13
  <input type="hidden" value="http://www.ft.com/ontology/concept/Concept" name="directType">
14
14
  {{/if}}
15
15
  <button
16
- aria-label="Get instant alerts for {{name}}"
17
16
  {{#ifAll hasInstantAlert @root.cacheablePersonalisedUrl}}
17
+ aria-label="Alerts {{name}} currently enabled, change to disable"
18
18
  aria-pressed="true"
19
19
  {{else}}
20
+ aria-label="Alerts {{name}} currently disabled, change to enable"
20
21
  aria-pressed="false"
21
22
  {{/ifAll}}
22
23
  class="n-myft-ui__button
@@ -24,7 +25,7 @@
24
25
  {{#size}} n-myft-ui__button--{{this}}{{/size}}
25
26
  n-myft-ui__button--instant
26
27
  n-myft-ui__button--instant-light"
27
- data-alternate-label="Stop instant alerts for {{name}}"
28
+ data-name="{{name}}"
28
29
  {{#if alternateText}}
29
30
  data-alternate-text="{{alternateText}}"
30
31
  {{else}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@financial-times/n-myft-ui",
3
- "version": "34.0.1",
3
+ "version": "34.0.2",
4
4
  "description": "Client side component for interaction with myft",
5
5
  "main": "server.js",
6
6
  "scripts": {