Skip to content

Commit

Permalink
Merge pull request #347 from lblod/dependabot/npm_and_yarn/ember-temp…
Browse files Browse the repository at this point in the history
…late-lint-4.14.0

build(deps-dev): bump ember-template-lint from 3.16.0 to 4.14.0
abeforgit authored Sep 30, 2022
2 parents 2950363 + 9da0f4c commit dd886fb
Showing 3 changed files with 682 additions and 204 deletions.
78 changes: 41 additions & 37 deletions addon/components/rdfa/editor-toolbar.hbs
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
data-test-button-id='undo-button'
title={{t 'ember-rdfa-editor.undo'}}
>
<AuIcon @icon='undo' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='undo' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Undo
</span>
@@ -22,7 +22,7 @@
{{on 'click' this.toggleBold}}
title={{t 'ember-rdfa-editor.bold'}}
>
<AuIcon @icon='bold' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='bold' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Bold
</span>
@@ -33,7 +33,7 @@
{{on 'click' this.toggleItalic}}
title={{t 'ember-rdfa-editor.italic'}}
>
<AuIcon @icon='italic' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='italic' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Italic
</span>
@@ -44,7 +44,7 @@
{{on 'click' this.toggleUnderline}}
title={{t 'ember-rdfa-editor.underline'}}
>
<AuIcon @icon='underlined' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='underlined' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Underline
</span>
@@ -55,7 +55,7 @@
{{on 'click' this.toggleStrikethrough}}
title={{t 'ember-rdfa-editor.strikethrough'}}
>
<AuIcon @icon='strikethrough' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='strikethrough' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Strikethrough
</span>
@@ -76,19 +76,19 @@
data-test-button-id='unordered-list'
title={{t 'ember-rdfa-editor.unordered-list'}}
>
<AuIcon @icon='unordered-list' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='unordered-list' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Unordered list
</span>
</button>
{{!--
<button type="button" class="say-toolbar__button {{if this.isInList "is-active"}}" {{on "click" this.toggleOrderedList}} data-test-button-id="ordered-list" title={{t 'ember-rdfa-editor.ordered-list'}}>
<AuIcon @icon="ordered-list" @ariaHidden={{true}} @size="large" />
<span class="au-u-hidden-visually">
Ordered list
</span>
</button>
--}}
{{!--
<button type="button" class="say-toolbar__button {{if this.isInList "is-active"}}" {{on "click" this.toggleOrderedList}} data-test-button-id="ordered-list" title={{t 'ember-rdfa-editor.ordered-list'}}>
<AuIcon @icon="ordered-list" @ariaHidden={{true}} @size="large" />
<span class="au-u-hidden-visually">
Ordered list
</span>
</button>
--}}
{{/if}}
{{#if @showIndentButtons}}
{{#if this.canUnindent}}
@@ -117,7 +117,7 @@
{{on 'click' this.insertIndent}}
title={{t 'ember-rdfa-editor.indent-list'}}
>
<AuIcon @icon='indent' @ariaHidden={{true}} @size='large' />
<AuIcon @icon='indent' @ariaHidden={{true}} @size='large'/>
<span class='au-u-hidden-visually'>
Indent
</span>
@@ -183,36 +183,40 @@
{{t 'ember-rdfa-editor.delete-table'}}
</Menu.Item>
{{else}}
<div role='menuitem' class='say-dropdown__menu-with-inputs'>
{{t 'ember-rdfa-editor.columns'}}
<AuLabel for='editor-table-columns' class='au-u-hidden-visually'>{{t
<div role="group">
<div role='menuitem' class='say-dropdown__menu-with-inputs'>
{{t 'ember-rdfa-editor.columns'}}
<AuLabel for='editor-table-columns' class='au-u-hidden-visually'>{{t
'ember-rdfa-editor.columns'
}}</AuLabel>
<Input
id='editor-table-columns'
class='say-input say-input--small'
size='1'
@value={{this.tableAddColumns}}
/>
<Input
id='editor-table-columns'
class='say-input say-input--small'
size='1'
@value={{this.tableAddColumns}}
/>
</div>
</div>
<div role='menuitem' class='say-dropdown__menu-with-inputs'>
{{t 'ember-rdfa-editor.rows'}}
<AuLabel for='editor-table-rows' class='au-u-hidden-visually'>{{t
<div role="group">
<div role='menuitem' class='say-dropdown__menu-with-inputs'>
{{t 'ember-rdfa-editor.rows'}}
<AuLabel for='editor-table-rows' class='au-u-hidden-visually'>{{t
'ember-rdfa-editor.rows'
}}</AuLabel>
<Input
id='editor-table-rows'
class='say-input say-input--small'
size='1'
@value={{this.tableAddRows}}
/>
<Input
id='editor-table-rows'
class='say-input say-input--small'
size='1'
@value={{this.tableAddRows}}
/>
</div>
</div>
<Menu.Item
@menuAction={{fn
this.insertTable
this.tableAddRows
this.tableAddColumns
}}
this.insertTable
this.tableAddRows
this.tableAddColumns
}}
title={{t 'ember-rdfa-editor.insert-table'}}
>
<AuIcon @icon='table-insert' @ariaHidden={{true}} />
Loading

0 comments on commit dd886fb

Please sign in to comment.