Skip to content

Commit 2496c2d

Browse files
authored
Merge branch 'main' into mit-mit-patch-1
2 parents 3dbabf0 + ee7274b commit 2496c2d

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include: ../analysis_options.yaml
2+
3+
analyzer:
4+
errors:
5+
experimental_member_use: ignore

site/lib/src/components/common/tabs.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import 'package:jaspr_content/jaspr_content.dart';
88
import '../../util.dart';
99

1010
/// A tabs component where children tabs can be switched between by the user.
11-
class DashTabs implements CustomComponent {
11+
class DashTabs extends CustomComponent {
1212
static int _currentTabWrapperId = 0;
1313
static int _currentTabId = 0;
1414

15-
const DashTabs();
15+
const DashTabs() : super.base();
1616

1717
@override
1818
Component? create(Node node, NodesBuilder builder) {

site/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies:
1616
http: ^1.4.0
1717
# Used for formatting dates in the SDK archive.
1818
intl: ^0.20.2
19-
jaspr: ^0.21.5
20-
jaspr_content: ^0.4.2
19+
jaspr: ^0.21.6
20+
jaspr_content: ^0.4.3
2121
# Used as our template engine.
2222
liquify: ^1.3.1
2323
markdown: ^7.3.0
@@ -38,8 +38,8 @@ dev_dependencies:
3838
ref: e2534e272132813a1cdcf6ea71a6fd9c904a69fb
3939
build_runner: ^2.8.0
4040
build_web_compilers: ^4.2.3
41-
jaspr_builder: ^0.21.5
42-
jaspr_test: ^0.21.5
41+
jaspr_builder: ^0.21.6
42+
jaspr_test: ^0.21.6
4343
lints: ^6.0.0
4444
sass: ^1.92.1
4545
sass_builder: ^2.3.1

src/content/interop/js-interop/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Interact with the browser:
4141

4242
## The evolution of JavaScript interop {: #next-generation-js-interop }
4343

44-
[Dart 3.3][] introduces a new generation of JS interop which offerins
44+
[Dart 3.3][] introduces a new generation of JS interop that offers
4545
a unified set of features and APIs to access JavaScript and browser
4646
functionalities within your Dart code. This modern approach enhances the
4747
developer experience and enables WebAssembly ([Wasm][]) support, aligning

0 commit comments

Comments
 (0)