@oicl/openbridge-webcomponents 0.0.15-dev-20241123190545 → 0.0.15-dev-20241124190908
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.
@@ -11,6 +11,7 @@ const config: TestRunnerConfig = {
|
|
11
11
|
async postVisit(page, context) {
|
12
12
|
// use the test-runner utility to wait for fonts to load, etc.
|
13
13
|
await waitForPageReady(page);
|
14
|
+
await page.mouse.move(0, 2000);
|
14
15
|
|
15
16
|
// If you want to take screenshot of multiple browsers, use
|
16
17
|
// page.context().browser().browserType().name() to get the browser name to prefix the file name
|
package/custom-elements.json
CHANGED
@@ -217,6 +217,12 @@
|
|
217
217
|
}
|
218
218
|
]
|
219
219
|
},
|
220
|
+
{
|
221
|
+
"kind": "javascript-module",
|
222
|
+
"path": "src/navigation-instruments/types.ts",
|
223
|
+
"declarations": [],
|
224
|
+
"exports": []
|
225
|
+
},
|
220
226
|
{
|
221
227
|
"kind": "javascript-module",
|
222
228
|
"path": "src/icons/icon-01-add.ts",
|
@@ -38191,12 +38197,6 @@
|
|
38191
38197
|
}
|
38192
38198
|
]
|
38193
38199
|
},
|
38194
|
-
{
|
38195
|
-
"kind": "javascript-module",
|
38196
|
-
"path": "src/navigation-instruments/types.ts",
|
38197
|
-
"declarations": [],
|
38198
|
-
"exports": []
|
38199
|
-
},
|
38200
38200
|
{
|
38201
38201
|
"kind": "javascript-module",
|
38202
38202
|
"path": "src/svghelpers/circle.ts",
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
2
|
+
import globals from "globals";
|
3
|
+
import tsParser from "@typescript-eslint/parser";
|
4
|
+
import path from "node:path";
|
5
|
+
import { fileURLToPath } from "node:url";
|
6
|
+
import js from "@eslint/js";
|
7
|
+
import { FlatCompat } from "@eslint/eslintrc";
|
8
|
+
|
9
|
+
const __filename = fileURLToPath(import.meta.url);
|
10
|
+
const __dirname = path.dirname(__filename);
|
11
|
+
const compat = new FlatCompat({
|
12
|
+
baseDirectory: __dirname,
|
13
|
+
recommendedConfig: js.configs.recommended,
|
14
|
+
allConfig: js.configs.all
|
15
|
+
});
|
16
|
+
|
17
|
+
export default [...compat.extends(
|
18
|
+
"eslint:recommended",
|
19
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
20
|
+
"plugin:@typescript-eslint/recommended",
|
21
|
+
"plugin:storybook/recommended",
|
22
|
+
), {
|
23
|
+
plugins: {
|
24
|
+
"@typescript-eslint": typescriptEslint,
|
25
|
+
},
|
26
|
+
|
27
|
+
languageOptions: {
|
28
|
+
globals: {
|
29
|
+
...globals.browser,
|
30
|
+
},
|
31
|
+
|
32
|
+
parser: tsParser,
|
33
|
+
ecmaVersion: 2020,
|
34
|
+
sourceType: "module",
|
35
|
+
},
|
36
|
+
|
37
|
+
rules: {
|
38
|
+
"no-prototype-builtins": "off",
|
39
|
+
"@typescript-eslint/ban-types": "off",
|
40
|
+
"@typescript-eslint/explicit-function-return-type": "off",
|
41
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
42
|
+
"@typescript-eslint/no-explicit-any": "error",
|
43
|
+
"@typescript-eslint/no-empty-function": "off",
|
44
|
+
"@typescript-eslint/no-non-null-assertion": "off",
|
45
|
+
|
46
|
+
"@typescript-eslint/no-unused-vars": ["warn", {
|
47
|
+
argsIgnorePattern: "^_",
|
48
|
+
}],
|
49
|
+
},
|
50
|
+
}, {
|
51
|
+
files: ["**/rollup.config.js", "**/web-test-runner.config.js"],
|
52
|
+
|
53
|
+
languageOptions: {
|
54
|
+
globals: {
|
55
|
+
...globals.node,
|
56
|
+
},
|
57
|
+
},
|
58
|
+
}, {
|
59
|
+
files: [
|
60
|
+
"**/*_test.ts",
|
61
|
+
"**/custom_typings/*.ts",
|
62
|
+
"packages/labs/ssr/src/test/integration/tests/**",
|
63
|
+
"packages/labs/ssr/src/lib/util/parse5-utils.ts",
|
64
|
+
],
|
65
|
+
|
66
|
+
rules: {
|
67
|
+
"@typescript-eslint/no-explicit-any": "off",
|
68
|
+
},
|
69
|
+
}];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@oicl/openbridge-webcomponents",
|
3
|
-
"version": "0.0.15-dev-
|
3
|
+
"version": "0.0.15-dev-20241124190908",
|
4
4
|
"type": "module",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -32,16 +32,19 @@
|
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
34
|
"@lit-labs/observers": "^2.0.4",
|
35
|
-
"lit": "^3.2.1"
|
35
|
+
"lit": "^3.2.1",
|
36
|
+
"typescript-eslint": "^8.15.0"
|
36
37
|
},
|
37
38
|
"devDependencies": {
|
38
39
|
"@chromatic-com/storybook": "^1.7.0",
|
39
40
|
"@custom-elements-manifest/analyzer": "^0.10.3",
|
41
|
+
"@eslint/eslintrc": "^3.2.0",
|
42
|
+
"@eslint/js": "^9.15.0",
|
40
43
|
"@lit-labs/cli": "^0.6.5",
|
41
44
|
"@lit-labs/gen-wrapper-react": "^0.3.3",
|
42
45
|
"@lit-labs/gen-wrapper-vue": "^0.4.0",
|
43
46
|
"@open-wc/lit-helpers": "^0.7.0",
|
44
|
-
"@playwright/test": "^1.
|
47
|
+
"@playwright/test": "^1.49.0",
|
45
48
|
"@storybook/addon-essentials": "^8.4.4",
|
46
49
|
"@storybook/addon-interactions": "^8.4.4",
|
47
50
|
"@storybook/addon-links": "^8.4.4",
|
@@ -50,7 +53,7 @@
|
|
50
53
|
"@storybook/blocks": "^8.4.4",
|
51
54
|
"@storybook/manager-api": "^8.4.4",
|
52
55
|
"@storybook/test": "^8.4.4",
|
53
|
-
"@storybook/test-runner": "^0.
|
56
|
+
"@storybook/test-runner": "^0.19.1",
|
54
57
|
"@storybook/theming": "^8.4.4",
|
55
58
|
"@storybook/web-components": "^8.4.4",
|
56
59
|
"@storybook/web-components-vite": "^8.4.4",
|
@@ -59,13 +62,14 @@
|
|
59
62
|
"@types/node": "^22.4.1",
|
60
63
|
"concurrently": "^8.2.2",
|
61
64
|
"dotenv": "^16.3.1",
|
62
|
-
"eslint": "^
|
63
|
-
"eslint-plugin-storybook": "^0.
|
65
|
+
"eslint": "^9.15.0",
|
66
|
+
"eslint-plugin-storybook": "^0.11.1",
|
64
67
|
"figma-api": "^1.12.0",
|
68
|
+
"globals": "^15.12.0",
|
65
69
|
"jest-image-snapshot": "^6.2.0",
|
66
70
|
"lit-analyzer": "^2.0.3",
|
67
71
|
"nodemon": "^3.0.2",
|
68
|
-
"playwright": "^1.
|
72
|
+
"playwright": "^1.49.0",
|
69
73
|
"postcss": "^8.4.36",
|
70
74
|
"postcss-mixins": "^10.0.0",
|
71
75
|
"postcss-nesting": "^12.0.1",
|
@@ -58,6 +58,7 @@ const meta: Meta<typeof ObcTopBar> = {
|
|
58
58
|
?inactive=${args.inactive}
|
59
59
|
?settings=${args.settings}
|
60
60
|
?showdate=${args.showDate}
|
61
|
+
?menuButtonActivated=${args.menuButtonActivated}
|
61
62
|
.appButtonBreakpointPx=${args.appButtonBreakpointPx}
|
62
63
|
.appTitleBreakpointPx=${args.appTitleBreakpointPx}
|
63
64
|
.dimmingButtonBreakpointPx=${args.dimmingButtonBreakpointPx}
|