File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export const SelectableMixin = <T extends Constructor<LitElement>>(
45
45
// If not selectable target, then make it self selectable. (A selectable target should be made focusable by the component itself)
46
46
this . setAttribute ( 'tabindex' , `${ newVal ? '0' : '-1' } ` ) ;
47
47
}
48
- this . requestUpdate ( 'selected ' , oldVal ) ;
48
+ this . requestUpdate ( 'selectable ' , oldVal ) ;
49
49
}
50
50
51
51
protected deselectable = true ;
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import { UUICardEvent } from './UUICardEvent';
10
10
11
11
/**
12
12
* @element uui-card
13
- * @fires {UUICardEvent } open - fires when the card title is clicked
14
- * @description - Base card component to be extended by specific cards .
13
+ * @fires {UUICardEvent } open - fires when the card title is clicked.
14
+ * @description - Base card component to be extended by specific card elements .
15
15
*/
16
16
@defineElement ( 'uui-card' )
17
17
export class UUICardElement extends SelectOnlyMixin (
Original file line number Diff line number Diff line change @@ -188,9 +188,9 @@ export const Dialog = () => html`
188
188
assume the message, for those users we want something that is easy to
189
189
digest for their eyes.< br />
190
190
Others are learning the system and need to be suited to all of the
191
- consequences to have confidence in what they do. They will read everything
192
- but not necessarily understand all words — Therefore we will use the
193
- description to write sentences and confirm the understanding.
191
+ consequences to have confidence in what they do. They will read
192
+ everything but not necessarily understand all words — Therefore we will
193
+ use the description to write sentences and confirm the understanding.
194
194
</ p >
195
195
196
196
< p >
@@ -257,8 +257,8 @@ export const Dialog = () => html`
257
257
258
258
< br />
259
259
< p >
260
- In the above example the description helps the user understand the effect —
261
- and guides the user by mentioning where it goes.
260
+ In the above example the description helps the user understand the effect
261
+ — and guides the user by mentioning where it goes.
262
262
</ p >
263
263
< br />
264
264
@@ -276,8 +276,8 @@ export const Dialog = () => html`
276
276
< br />
277
277
< p >
278
278
This helps the user understand the effect of publishing and ´descendants´
279
- — which for someone who does not have experience can be hard to
280
- understand at first.
279
+ — which for someone who does not have experience can be hard to understand
280
+ at first.
281
281
</ p >
282
282
283
283
< br />
You can’t perform that action at this time.
0 commit comments