@brightspace-ui/core 1.219.4 → 1.220.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.
@@ -283,7 +283,6 @@ export const DialogMixin = superclass => class extends RtlMixin(superclass) {
283
283
  if (!this.opened) return;
284
284
  if (e.keyCode === 27) {
285
285
  // escape (note: prevent native dialog close so we can: animate it; use setDismissible)
286
- e.stopPropagation();
287
286
  e.preventDefault();
288
287
  }
289
288
  }
@@ -268,7 +268,7 @@ class Filter extends LocalizeCoreElement(RtlMixin(LitElement)) {
268
268
  @d2l-hierarchical-view-hide-start="${this._handleDimensionHideStart}"
269
269
  @d2l-hierarchical-view-show-complete="${this._handleDimensionShowComplete}"
270
270
  @d2l-hierarchical-view-show-start="${this._handleDimensionShowStart}"
271
- @keyup="${this._handleDimensionHideKeyPress}"
271
+ @keydown="${this._handleDimensionHideKeyDown}"
272
272
  data-key="${dimension.key}">
273
273
  ${dimensionHTML}
274
274
  </d2l-hierarchical-view>
@@ -357,7 +357,7 @@ class Filter extends LocalizeCoreElement(RtlMixin(LitElement)) {
357
357
  `;
358
358
 
359
359
  return html`
360
- <div slot="header" @keyup="${this._handleDimensionHideKeyPress}">
360
+ <div slot="header" @keydown="${this._handleDimensionHideKeyDown}">
361
361
  ${header}
362
362
  ${actions}
363
363
  </div>
@@ -551,7 +551,7 @@ class Filter extends LocalizeCoreElement(RtlMixin(LitElement)) {
551
551
  if (this.shadowRoot) this.shadowRoot.querySelector(`d2l-hierarchical-view[data-key="${this._activeDimensionKey}"]`).hide();
552
552
  }
553
553
 
554
- _handleDimensionHideKeyPress(e) {
554
+ _handleDimensionHideKeyDown(e) {
555
555
  if (this._activeDimensionKey && (e.keyCode === ARROWLEFT_KEY_CODE || e.keyCode === ESCAPE_KEY_CODE)) {
556
556
  e.stopPropagation();
557
557
  this._handleDimensionHide();
@@ -154,7 +154,7 @@ export const HierarchicalViewMixin = superclass => class extends superclass {
154
154
  firstUpdated(changedProperties) {
155
155
  super.firstUpdated(changedProperties);
156
156
 
157
- this.addEventListener('keyup', this.__onKeyUp);
157
+ this.addEventListener('keydown', this.__onKeyDown);
158
158
  this.addEventListener('d2l-hierarchical-view-hide-start', this.__onHideStart);
159
159
  this.addEventListener('d2l-hierarchical-view-show-start', this.__onShowStart);
160
160
  this.addEventListener('d2l-hierarchical-view-resize', this.__onViewResize);
@@ -477,7 +477,7 @@ export const HierarchicalViewMixin = superclass => class extends superclass {
477
477
 
478
478
  }
479
479
 
480
- __onKeyUp(e) {
480
+ __onKeyDown(e) {
481
481
  if (this.childView && e.keyCode === escapeKeyCode) {
482
482
  e.stopPropagation();
483
483
  this.hide();
@@ -6,7 +6,7 @@ Components to assist with displaying user-authored HTML within your webpage.
6
6
 
7
7
  The `d2l-html-block` element is a web component for displaying user-authored HTML. It includes styles for headings, lists, anchors and other elements. In addition, it provides integration with MathJax for rendering MathML.
8
8
 
9
- Place the user-authored HTML within a `template` and the `d2l-html-block` will stamp the content into its local DOM where styles will be applied, and math typeset.
9
+ Place the user-authored HTML within the `d2l-html-block` and the component will stamp the content into its local DOM where styles will be applied, and math typeset.
10
10
 
11
11
  <!-- docs: demo live name:d2l-html-block autoSize:false size:small -->
12
12
  ```html
@@ -15,34 +15,32 @@ Place the user-authored HTML within a `template` and the `d2l-html-block` will s
15
15
  import '@brightspace-ui/core/components/icons/icon.js';
16
16
  </script>
17
17
  <d2l-html-block>
18
- <template>
19
- <!-- docs: start hidden content -->
20
- <style>
21
- div {
22
- --d2l-icon-fill-color: var(--d2l-color-cinnabar);
23
- }
24
- span {
25
- color: var(--d2l-color-cinnabar);
26
- margin-left: 10px;
27
- vertical-align: middle;
28
- }
29
- d2l-icon {
30
- align-self: center;
31
- flex-shrink: 0;
32
- }
33
- .warning-container {
34
- align-items: center;
35
- display: flex;
36
- justify-content: center;
37
- }
38
- </style>
18
+ <!-- docs: start hidden content -->
19
+ <style>
20
+ div {
21
+ --d2l-icon-fill-color: var(--d2l-color-cinnabar);
22
+ }
23
+ span {
24
+ color: var(--d2l-color-cinnabar);
25
+ margin-left: 10px;
26
+ vertical-align: middle;
27
+ }
28
+ d2l-icon {
29
+ align-self: center;
30
+ flex-shrink: 0;
31
+ }
32
+ .warning-container {
33
+ align-items: center;
34
+ display: flex;
35
+ justify-content: center;
36
+ }
37
+ </style>
39
38
  <!-- docs: end hidden content --><div class="warning-container">
40
- <d2l-icon icon="tier3:alert"></d2l-icon>
41
- <span>
42
- <b>Important:</b> user-authored HTML must be trusted or properly sanitized!
43
- </span>
44
- </div>
45
- </template>
39
+ <d2l-icon icon="tier3:alert"></d2l-icon>
40
+ <span>
41
+ <b>Important:</b> user-authored HTML must be trusted or properly sanitized!
42
+ </span>
43
+ </div>
46
44
  </d2l-html-block>
47
45
  ```
48
46
 
@@ -58,7 +56,7 @@ To use `d2l-html-block` within another Lit component, use the [unsafeHTML](https
58
56
  render() {
59
57
  return html`
60
58
  <d2l-html-block>
61
- <template>${unsafeHTML(this._unsafeHTML)}</template>
59
+ ${unsafeHTML(this._unsafeHTML)}
62
60
  </d2l-html-block>`;
63
61
  }
64
62
  }
@@ -79,27 +77,25 @@ Examples are provided to display how user-authored math can be embedded within y
79
77
  import '@brightspace-ui/core/components/icons/icon.js';
80
78
  </script>
81
79
  <d2l-html-block>
82
- <template>
83
- <div class="mathml-container">
84
- <math xmlns="http://www.w3.org/1998/Math/MathML">
85
- <msqrt>
86
- <mn>3</mn>
87
- <mi>x</mi>
88
- <mo>&#x2212;</mo>
89
- <mn>1</mn>
90
- </msqrt>
91
- <mo>+</mo>
92
- <mo stretchy="false">(</mo>
93
- <mn>1</mn>
94
- <mo>+</mo>
80
+ <div class="mathml-container">
81
+ <math xmlns="http://www.w3.org/1998/Math/MathML">
82
+ <msqrt>
83
+ <mn>3</mn>
95
84
  <mi>x</mi>
96
- <msup>
97
- <mo stretchy="false">)</mo>
98
- <mn>2</mn>
99
- </msup>
100
- </math>
101
- </div>
102
- </template>
85
+ <mo>&#x2212;</mo>
86
+ <mn>1</mn>
87
+ </msqrt>
88
+ <mo>+</mo>
89
+ <mo stretchy="false">(</mo>
90
+ <mn>1</mn>
91
+ <mo>+</mo>
92
+ <mi>x</mi>
93
+ <msup>
94
+ <mo stretchy="false">)</mo>
95
+ <mn>2</mn>
96
+ </msup>
97
+ </math>
98
+ </div>
103
99
  </d2l-html-block>
104
100
  ```
105
101
 
@@ -124,10 +120,8 @@ Examples are provided to display how user-authored math can be embedded within y
124
120
  document.getElementsByTagName('html')[0].dataset.mathjaxContext = JSON.stringify({ renderLatex: true });<!-- docs: end hidden content -->
125
121
  </script>
126
122
  <d2l-html-block>
127
- <template>
128
- <div class="latex-container">
129
- $$ f(x) = \int \mathrm{e}^{-x}\,\mathrm{d}x $$ $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
130
- </div>
131
- </template>
123
+ <div class="latex-container">
124
+ $$ f(x) = \int \mathrm{e}^{-x}\,\mathrm{d}x $$ $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
125
+ </div>
132
126
  </d2l-html-block>
133
127
  ```