Skip to content

Commit 2539c4b

Browse files
committed
Fix #127
1 parent f446e0b commit 2539c4b

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.changeset/weak-seahorses-jog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'number-flow': patch
3+
---
4+
5+
Fix errors in browsers that don't support attachInternals (see #127)

packages/number-flow/src/lite.ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,13 @@ export default class NumberFlowLite extends ServerSafeHTMLElement implements Pro
137137
// This will overwrite the DSD if any:
138138
this.attachShadow({ mode: 'open' })
139139

140-
this._internals ??= this.attachInternals()
141-
this._internals.role = 'img'
140+
try {
141+
this._internals ??= this.attachInternals()
142+
this._internals.role = 'img'
143+
} catch {
144+
// Don't error in old browsers that don't support ElementInternals
145+
// Try/catch is less code than an if check.
146+
}
142147

143148
// Add stylesheet
144149
if (typeof CSSStyleSheet !== 'undefined' && this.shadowRoot!.adoptedStyleSheets) {
@@ -193,7 +198,12 @@ export default class NumberFlowLite extends ServerSafeHTMLElement implements Pro
193198
if (!this.batched) this.didUpdate()
194199
}
195200

196-
this._internals!.ariaLabel = data.valueAsString
201+
try {
202+
this._internals!.ariaLabel = data.valueAsString
203+
} catch {
204+
// Don't error in old browsers that don't support ElementInternals
205+
// Try/catch is less code than an if check.
206+
}
197207
}
198208

199209
/**

0 commit comments

Comments
 (0)