Skip to content

Commit e9feec5

Browse files
committed
Disable autoplay for accessbility but make it configurable
1 parent f3688d4 commit e9feec5

File tree

8 files changed

+2265
-2546
lines changed

8 files changed

+2265
-2546
lines changed

.storybook/public/mockServiceWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* - Please do NOT modify this file.
88
*/
99

10-
const PACKAGE_VERSION = '2.12.2'
10+
const PACKAGE_VERSION = '2.12.3'
1111
const INTEGRITY_CHECKSUM = '4db4a41e972cec1b64cc569c66952d82'
1212
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
1313
const activeClientIds = new Set()

eslint.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import js from "@eslint/js";
44
import vitest from "@vitest/eslint-plugin";
5+
import { defineConfig } from "eslint/config";
56
import deMorgan from "eslint-plugin-de-morgan";
67
import * as depend from "eslint-plugin-depend";
78
import eslintPluginImportX from "eslint-plugin-import-x";
@@ -38,7 +39,7 @@ const ALL_FILES = [
3839
If there are performance issues, always can fine-tune with files: {*.*} to narrow it down.
3940
But most of the time it's fine not to define fine and trust their defaults/recommendations.
4041
*/
41-
export default tseslint.config(
42+
export default defineConfig([
4243
{
4344
// Node_modules and .git already covered in eslint.configs.all below
4445
name: "ignore some more files",
@@ -247,4 +248,4 @@ export default tseslint.config(
247248
"@typescript-eslint/restrict-template-expressions": "off",
248249
},
249250
},
250-
);
251+
]);

0 commit comments

Comments
 (0)