1. 13 Jul, 2021 5 commits
  2. 12 Jul, 2021 1 commit
    • Kyle Keating's avatar
      Remove aria-label from TagEditor and AnnotationPublishControl button · 4ae836c4
      Kyle Keating authored
      Per WCAG 2.1 criterion: 2.5.3 Label in Name--we should not differentiate between the aria-label and the visual name in an input element. In the case of the TagEditor, the `placeholder` and `aria-label` were different. The simple fix is to remove `aria-label`.
      
      The second problem is with AnnotationPublishControl's button where the `aria-label` and button's text did not match. Again, the simple fix is to remove `aria-label`.
      4ae836c4
  3. 09 Jul, 2021 2 commits
    • Robert Knight's avatar
      Always use object shorthand for properties · 2cccebc2
      Robert Knight authored
      Enforce the use of object shorthand syntax everywhere for consistency.
      eg. `{ foo }` instead of `{ foo: foo }`. We had already converted most
      occurrences manually.
      2cccebc2
    • Robert Knight's avatar
      Convert remaining anonymous callbacks to arrow functions · 088864e9
      Robert Knight authored
      We've been gradually converting anonymous functions to arrow functions
      since adopting ES6. This commit uses ESLint to finish the process by
      converting the remaining non-named, non-`this`-using callbacks to arrow
      functions.
      
       - Enable `prefer-arrow-callbacks` lint rule. The `allowNamedFunctions`
         option is enabled because we have a few instances (eg. in
         gulpfile.js) of explicitly naming functions for use in debugging /
         logging etc.
      
       - Run `eslint --fix .` and `yarn format` to automatically fix up the
         code
      088864e9
  4. 07 Jul, 2021 1 commit
  5. 06 Jul, 2021 12 commits
  6. 05 Jul, 2021 1 commit
  7. 02 Jul, 2021 2 commits
    • Eduardo Sanz García's avatar
      Render the `NotebookModal` only when `groupId` is defined · fcf1e6ac
      Eduardo Sanz García authored
      On Firefox, I have noticed that the notebook close button is briefly
      displayed and then hidden. This delay is probably caused by time that it
      takes to parse the CSS until it is applied. To avoid this 'blink' we
      render the component only when the `groupId` is set.
      fcf1e6ac
    • Eduardo Sanz García's avatar
      Small visual improvements for the notebook close button · 1d0e3a32
      Eduardo Sanz García authored
      Currently, because of the `notebook` and `sidebar` are not able to
      communicate directly it is not possible to place the close button on the
      `notebook` app itself.
      
      While waiting for the above to be fixed, I propose a few minor style
      changes:
      
      * Changed the `LabeledButton` to `IconButton` and only show the `X`
        (cancel icon). This is a widely understood and accepted pattern for
        modals
      
      * Increase the size of the cancel icon
      
      * Re-enable the cursor when hovering on the button (it seems that the
        `cursor: pointer` rule was not longer functional)
      
      * Made the margin bigger to avoid the browser scrolling bar to hidden by
        the button.
      
      These changes are meant to be a temporary improvement.
      1d0e3a32
  8. 29 Jun, 2021 3 commits
  9. 28 Jun, 2021 8 commits
  10. 24 Jun, 2021 4 commits
  11. 23 Jun, 2021 1 commit
    • Kyle Keating's avatar
      Remove options.defaultValue from hostPageSetting · 0de918ff
      Kyle Keating authored
      - defaultValue is now handled inside of getConfig so this code is unused.
      
      - hostPageSetting now returns undefined, rather than null, if a value is not found in the config. The undefined value will trigger the defaultValue to take effect in getConfig if a defaultValue is provided.
      0de918ff