@markuplint/ml-core 3.12.0 → 3.12.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.
|
@@ -933,6 +933,7 @@ export declare class MLDocument<T extends RuleConfigValue, O extends PlainData =
|
|
|
933
933
|
* @implements DOM API: `Document`
|
|
934
934
|
*/
|
|
935
935
|
get onscroll(): ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
936
|
+
get onscrollend(): ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
936
937
|
/**
|
|
937
938
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
938
939
|
*
|
|
@@ -1174,6 +1174,9 @@ class MLDocument extends parent_node_1.MLParentNode {
|
|
|
1174
1174
|
get onscroll() {
|
|
1175
1175
|
throw new unexpected_call_error_1.default('Not supported "onscroll" property');
|
|
1176
1176
|
}
|
|
1177
|
+
get onscrollend() {
|
|
1178
|
+
throw new unexpected_call_error_1.default('Not supported "onscrollend" property');
|
|
1179
|
+
}
|
|
1177
1180
|
/**
|
|
1178
1181
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1179
1182
|
*
|
|
@@ -1165,6 +1165,7 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
|
|
|
1165
1165
|
* @implements DOM API: `Element`
|
|
1166
1166
|
*/
|
|
1167
1167
|
get onscroll(): ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1168
|
+
get onscrollend(): ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1168
1169
|
/**
|
|
1169
1170
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1170
1171
|
*
|
|
@@ -1373,6 +1374,14 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
|
|
|
1373
1374
|
* @see https://www.w3.org/TR/css-shadow-parts-1/#idl
|
|
1374
1375
|
*/
|
|
1375
1376
|
get part(): DOMTokenList;
|
|
1377
|
+
/**
|
|
1378
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1379
|
+
*
|
|
1380
|
+
* @unsupported
|
|
1381
|
+
* @implements DOM API: `Element`
|
|
1382
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-popover
|
|
1383
|
+
*/
|
|
1384
|
+
get popover(): string | null;
|
|
1376
1385
|
/**
|
|
1377
1386
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1378
1387
|
*
|
|
@@ -1720,6 +1729,14 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
|
|
|
1720
1729
|
* @see https://www.w3.org/TR/pointerevents2/#dom-element-haspointercapture
|
|
1721
1730
|
*/
|
|
1722
1731
|
hasPointerCapture(pointerId: number): boolean;
|
|
1732
|
+
/**
|
|
1733
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1734
|
+
*
|
|
1735
|
+
* @unsupported
|
|
1736
|
+
* @implements DOM API: `Element`
|
|
1737
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-hidepopover
|
|
1738
|
+
*/
|
|
1739
|
+
hidePopover(): void;
|
|
1723
1740
|
/**
|
|
1724
1741
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1725
1742
|
*
|
|
@@ -1889,6 +1906,14 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
|
|
|
1889
1906
|
* @see https://www.w3.org/TR/pointerevents2/#idl-def-element-setpointercapture-pointerid
|
|
1890
1907
|
*/
|
|
1891
1908
|
setPointerCapture(pointerId: number): void;
|
|
1909
|
+
/**
|
|
1910
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1911
|
+
*
|
|
1912
|
+
* @unsupported
|
|
1913
|
+
* @implements DOM API: `Element`
|
|
1914
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-showpopover
|
|
1915
|
+
*/
|
|
1916
|
+
showPopover(): void;
|
|
1892
1917
|
/**
|
|
1893
1918
|
* @implements `@markuplint/ml-core` API: `MLElement`
|
|
1894
1919
|
*/
|
|
@@ -1905,6 +1930,14 @@ export declare class MLElement<T extends RuleConfigValue, O extends PlainData =
|
|
|
1905
1930
|
* @see https://dom.spec.whatwg.org/#ref-for-dom-element-toggleattribute%E2%91%A0
|
|
1906
1931
|
*/
|
|
1907
1932
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
1933
|
+
/**
|
|
1934
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1935
|
+
*
|
|
1936
|
+
* @unsupported
|
|
1937
|
+
* @implements DOM API: `Element`
|
|
1938
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-togglepopover
|
|
1939
|
+
*/
|
|
1940
|
+
togglePopover(force?: boolean): void;
|
|
1908
1941
|
/**
|
|
1909
1942
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1910
1943
|
*
|
|
@@ -1513,6 +1513,9 @@ class MLElement extends parent_node_1.MLParentNode {
|
|
|
1513
1513
|
get onscroll() {
|
|
1514
1514
|
throw new unexpected_call_error_1.default('Not supported "onscroll" property');
|
|
1515
1515
|
}
|
|
1516
|
+
get onscrollend() {
|
|
1517
|
+
throw new unexpected_call_error_1.default('Not supported "onscrollend" property');
|
|
1518
|
+
}
|
|
1516
1519
|
/**
|
|
1517
1520
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1518
1521
|
*
|
|
@@ -1773,6 +1776,16 @@ class MLElement extends parent_node_1.MLParentNode {
|
|
|
1773
1776
|
get part() {
|
|
1774
1777
|
throw new unexpected_call_error_1.default('Not supported "part" property');
|
|
1775
1778
|
}
|
|
1779
|
+
/**
|
|
1780
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1781
|
+
*
|
|
1782
|
+
* @unsupported
|
|
1783
|
+
* @implements DOM API: `Element`
|
|
1784
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-popover
|
|
1785
|
+
*/
|
|
1786
|
+
get popover() {
|
|
1787
|
+
throw new unexpected_call_error_1.default('Not supported "popover" property');
|
|
1788
|
+
}
|
|
1776
1789
|
/**
|
|
1777
1790
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
1778
1791
|
*
|
|
@@ -2350,6 +2363,16 @@ class MLElement extends parent_node_1.MLParentNode {
|
|
|
2350
2363
|
hasPointerCapture(pointerId) {
|
|
2351
2364
|
throw new unexpected_call_error_1.default('Not supported "hasPointerCapture" method');
|
|
2352
2365
|
}
|
|
2366
|
+
/**
|
|
2367
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
2368
|
+
*
|
|
2369
|
+
* @unsupported
|
|
2370
|
+
* @implements DOM API: `Element`
|
|
2371
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-hidepopover
|
|
2372
|
+
*/
|
|
2373
|
+
hidePopover() {
|
|
2374
|
+
throw new unexpected_call_error_1.default('Not supported "hidePopover" method');
|
|
2375
|
+
}
|
|
2353
2376
|
/**
|
|
2354
2377
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
2355
2378
|
*
|
|
@@ -2695,6 +2718,16 @@ class MLElement extends parent_node_1.MLParentNode {
|
|
|
2695
2718
|
setPointerCapture(pointerId) {
|
|
2696
2719
|
throw new unexpected_call_error_1.default('Not supported "setPointerCapture" method');
|
|
2697
2720
|
}
|
|
2721
|
+
/**
|
|
2722
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
2723
|
+
*
|
|
2724
|
+
* @unsupported
|
|
2725
|
+
* @implements DOM API: `Element`
|
|
2726
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-showpopover
|
|
2727
|
+
*/
|
|
2728
|
+
showPopover() {
|
|
2729
|
+
throw new unexpected_call_error_1.default('Not supported "showPopover" method');
|
|
2730
|
+
}
|
|
2698
2731
|
/**
|
|
2699
2732
|
* @implements `@markuplint/ml-core` API: `MLElement`
|
|
2700
2733
|
*/
|
|
@@ -2733,6 +2766,16 @@ class MLElement extends parent_node_1.MLParentNode {
|
|
|
2733
2766
|
toggleAttribute(qualifiedName, force) {
|
|
2734
2767
|
throw new unexpected_call_error_1.default('Not supported "toggleAttribute" method');
|
|
2735
2768
|
}
|
|
2769
|
+
/**
|
|
2770
|
+
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
2771
|
+
*
|
|
2772
|
+
* @unsupported
|
|
2773
|
+
* @implements DOM API: `Element`
|
|
2774
|
+
* @see https://html.spec.whatwg.org/multipage/popover.html#dom-togglepopover
|
|
2775
|
+
*/
|
|
2776
|
+
togglePopover(force) {
|
|
2777
|
+
throw new unexpected_call_error_1.default('Not supported "togglePopover" method');
|
|
2778
|
+
}
|
|
2736
2779
|
/**
|
|
2737
2780
|
* **IT THROWS AN ERROR WHEN CALLING THIS.**
|
|
2738
2781
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/ml-core",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.1",
|
|
4
4
|
"description": "The core module of markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
"./lib/configs.js": "./lib/configs.browser.js"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@markuplint/config-presets": "3.8.
|
|
27
|
-
"@markuplint/html-parser": "3.10.
|
|
28
|
-
"@markuplint/html-spec": "3.11.
|
|
26
|
+
"@markuplint/config-presets": "3.8.1",
|
|
27
|
+
"@markuplint/html-parser": "3.10.1",
|
|
28
|
+
"@markuplint/html-spec": "3.11.1",
|
|
29
29
|
"@markuplint/i18n": "3.9.0",
|
|
30
30
|
"@markuplint/ml-ast": "3.2.0",
|
|
31
|
-
"@markuplint/ml-config": "3.11.
|
|
32
|
-
"@markuplint/ml-spec": "3.11.
|
|
33
|
-
"@markuplint/parser-utils": "3.10.
|
|
34
|
-
"@markuplint/selector": "3.11.
|
|
31
|
+
"@markuplint/ml-config": "3.11.1",
|
|
32
|
+
"@markuplint/ml-spec": "3.11.1",
|
|
33
|
+
"@markuplint/parser-utils": "3.10.1",
|
|
34
|
+
"@markuplint/selector": "3.11.1",
|
|
35
35
|
"@types/debug": "^4.1.8",
|
|
36
36
|
"debug": "^4.3.4",
|
|
37
37
|
"is-plain-object": "^5.0.0",
|
|
38
|
-
"tslib": "^2.6.
|
|
39
|
-
"type-fest": "^3.
|
|
38
|
+
"tslib": "^2.6.2",
|
|
39
|
+
"type-fest": "^4.3.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "09100b8baa14dd930602daa458197322197c79c2"
|
|
42
42
|
}
|