@marko/language-server 1.2.1 → 1.3.1
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.
- package/dist/index.js +355 -484
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +356 -486
- package/dist/index.mjs.map +3 -3
- package/dist/service/html/axe-rules/axe-rules.d.ts +205 -180
- package/dist/service/html/axe-rules/rule-exceptions.d.ts +1 -1
- package/package.json +14 -15
|
@@ -7,7 +7,7 @@ export interface Exceptions {
|
|
|
7
7
|
attrSpread?: boolean;
|
|
8
8
|
unknownBody?: boolean;
|
|
9
9
|
}
|
|
10
|
-
type Blacklist = typeof r.structure.frameTested | typeof r.aria.ariaRequiredParent | typeof r.forms.label | typeof r.forms.labelTitleOnly | typeof r.forms.selectName | typeof r.keyboard.bypass | typeof r.keyboard.nestedInteractive | typeof r.keyboard.region | typeof r.semantics.headingOrder | typeof r.semantics.landmarkBannerIsTopLevel | typeof r.semantics.landmarkComplementaryIsTopLevel | typeof r.semantics.landmarkContentinfoIsTopLevel | typeof r.semantics.landmarkMainIsTopLevel | typeof r.semantics.landmarkOneMain | typeof r.semantics.pageHasHeadingOne | typeof r.structure.dlitem | typeof r.structure.listitem | typeof r.tables.
|
|
10
|
+
type Blacklist = typeof r.structure.frameTested | typeof r.aria.ariaRequiredParent | typeof r.forms.label | typeof r.forms.labelTitleOnly | typeof r.forms.selectName | typeof r.keyboard.bypass | typeof r.keyboard.nestedInteractive | typeof r.keyboard.region | typeof r.semantics.headingOrder | typeof r.semantics.landmarkBannerIsTopLevel | typeof r.semantics.landmarkComplementaryIsTopLevel | typeof r.semantics.landmarkContentinfoIsTopLevel | typeof r.semantics.landmarkMainIsTopLevel | typeof r.semantics.landmarkOneMain | typeof r.semantics.pageHasHeadingOne | typeof r.structure.dlitem | typeof r.structure.listitem | typeof r.tables.tdHeadersAttr | typeof r.aria.ariaRoledescription | typeof r.aria.ariaValidAttr | typeof r.color.colorContrast | typeof r.color.colorContrastEnhanced | typeof r.color.linkInTextBlock | typeof r.keyboard.scrollableRegionFocusable | typeof r.parsing.duplicateId | typeof r.parsing.duplicateIdActive | typeof r.parsing.duplicateIdAria | typeof r.sensoryAndVisualCues.targetSize | typeof r.structure.avoidInlineSpacing | typeof r.aria.ariaValidAttrValue | typeof r.aria.ariaAllowedAttr | typeof r.structure.cssOrientationLock | typeof r.keyboard.focusOrderSemantics | typeof r.structure.hiddenContent | typeof r.semantics.labelContentNameMismatch | typeof r.semantics.pAsHeading | typeof r.tables.tableFakeCaption | typeof r.tables.tdHasHeader;
|
|
11
11
|
type Whitelist = Exclude<RuleId, Blacklist>;
|
|
12
12
|
export declare const ruleExceptions: {
|
|
13
13
|
[id in Whitelist]: Exceptions;
|
package/package.json
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marko/language-server",
|
|
3
3
|
"description": "Marko Language Server",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"bin": {
|
|
6
6
|
"marko-language-server": "./bin.js"
|
|
7
7
|
},
|
|
8
8
|
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@luxass/strip-json-comments": "^1.2
|
|
11
|
-
"@
|
|
12
|
-
"@marko/
|
|
13
|
-
"@marko/
|
|
14
|
-
"@marko/
|
|
15
|
-
"@marko/translator-default": "^5.31.13",
|
|
10
|
+
"@luxass/strip-json-comments": "^1.3.2",
|
|
11
|
+
"@marko/language-tools": "^2.4.0",
|
|
12
|
+
"@marko/babel-utils": "^6.5.7",
|
|
13
|
+
"@marko/compiler": "^5.37.19",
|
|
14
|
+
"@marko/translator-default": "^6.0.19",
|
|
16
15
|
"htmljs-parser": "^5.5.2",
|
|
17
|
-
"marko": "^5.
|
|
18
|
-
"prettier": "^3.
|
|
19
|
-
"prettier-plugin-marko": "^3.1.
|
|
16
|
+
"marko": "^5.35.27",
|
|
17
|
+
"prettier": "^3.3.3",
|
|
18
|
+
"prettier-plugin-marko": "^3.1.4",
|
|
20
19
|
"relative-import-path": "^1.0.0",
|
|
21
|
-
"typescript": "^5.
|
|
22
|
-
"vscode-css-languageservice": "^6.
|
|
20
|
+
"typescript": "^5.6.3",
|
|
21
|
+
"vscode-css-languageservice": "^6.3.1",
|
|
23
22
|
"vscode-languageserver": "^9.0.1",
|
|
24
|
-
"vscode-languageserver-textdocument": "^1.0.
|
|
23
|
+
"vscode-languageserver-textdocument": "^1.0.12",
|
|
25
24
|
"vscode-uri": "^3.0.8"
|
|
26
25
|
},
|
|
27
26
|
"devDependencies": {
|
|
28
|
-
"@types/prettier": "^
|
|
29
|
-
"tsx": "^4.
|
|
27
|
+
"@types/prettier": "^3.0.0",
|
|
28
|
+
"tsx": "^4.19.1"
|
|
30
29
|
},
|
|
31
30
|
"exports": {
|
|
32
31
|
".": {
|