@swc-react/action-bar 0.38.0 → 0.39.0
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/next.d.ts +12 -12
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -6,22 +6,22 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
6
6
|
style?: import("react").CSSProperties | undefined;
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
accessKey?: string | undefined;
|
|
9
|
+
tabIndex?: number | undefined;
|
|
10
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
11
|
+
rel?: string | undefined;
|
|
12
|
+
id?: string | undefined;
|
|
13
|
+
className?: string | undefined;
|
|
9
14
|
content?: string | undefined;
|
|
10
15
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
11
16
|
hidden?: boolean | undefined;
|
|
12
17
|
lang?: string | undefined;
|
|
13
18
|
translate?: "yes" | "no" | undefined;
|
|
14
|
-
className?: string | undefined;
|
|
15
|
-
id?: string | undefined;
|
|
16
19
|
prefix?: string | undefined;
|
|
17
20
|
children?: import("react").ReactNode;
|
|
18
21
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
19
|
-
inputMode?: "text" | "
|
|
22
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
20
23
|
nonce?: string | undefined;
|
|
21
|
-
tabIndex?: number | undefined;
|
|
22
24
|
'aria-describedby'?: string | undefined;
|
|
23
|
-
rel?: string | undefined;
|
|
24
|
-
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
25
25
|
role?: import("react").AriaRole | undefined;
|
|
26
26
|
'aria-label'?: string | undefined;
|
|
27
27
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
@@ -71,7 +71,7 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
71
71
|
'aria-colindextext'?: string | undefined;
|
|
72
72
|
'aria-colspan'?: number | undefined;
|
|
73
73
|
'aria-controls'?: string | undefined;
|
|
74
|
-
'aria-current'?: boolean | "time" | "
|
|
74
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
75
75
|
'aria-description'?: string | undefined;
|
|
76
76
|
'aria-details'?: string | undefined;
|
|
77
77
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
@@ -273,6 +273,7 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
273
273
|
readonly attributes: NamedNodeMap;
|
|
274
274
|
readonly localName: string;
|
|
275
275
|
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
276
|
+
readonly renderOptions: import("lit-html").RenderOptions;
|
|
276
277
|
blur: () => void;
|
|
277
278
|
click: () => void;
|
|
278
279
|
focus: (options?: FocusOptions | undefined) => void;
|
|
@@ -280,9 +281,11 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
280
281
|
(options?: ScrollToOptions | undefined): void;
|
|
281
282
|
(x: number, y: number): void;
|
|
282
283
|
};
|
|
283
|
-
|
|
284
|
+
autofocus: boolean;
|
|
284
285
|
normalize: () => void;
|
|
285
|
-
|
|
286
|
+
ariaHidden: string | null;
|
|
287
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
288
|
+
open: boolean;
|
|
286
289
|
addEventListener: {
|
|
287
290
|
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
288
291
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
@@ -386,7 +389,6 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
386
389
|
toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
|
|
387
390
|
webkitMatchesSelector: (selectors: string) => boolean;
|
|
388
391
|
readonly baseURI: string;
|
|
389
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
|
390
392
|
readonly firstChild: ChildNode | null;
|
|
391
393
|
readonly isConnected: boolean;
|
|
392
394
|
readonly lastChild: ChildNode | null;
|
|
@@ -441,7 +443,6 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
441
443
|
ariaDisabled: string | null;
|
|
442
444
|
ariaExpanded: string | null;
|
|
443
445
|
ariaHasPopup: string | null;
|
|
444
|
-
ariaHidden: string | null;
|
|
445
446
|
ariaKeyShortcuts: string | null;
|
|
446
447
|
ariaLabel: string | null;
|
|
447
448
|
ariaLevel: string | null;
|
|
@@ -585,7 +586,6 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
585
586
|
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
586
587
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
587
588
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
588
|
-
autofocus: boolean;
|
|
589
589
|
readonly dataset: DOMStringMap;
|
|
590
590
|
variant: string;
|
|
591
591
|
emphasized: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-bar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@lit-labs/react": "^1.1.1",
|
|
33
|
-
"@spectrum-web-components/action-bar": "^0.
|
|
33
|
+
"@spectrum-web-components/action-bar": "^0.39.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"next": "~13.4"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "1a4b3c2d32e51b7f22a7f1196c3c0270512e7c4c"
|
|
44
44
|
}
|