@swc-react/action-menu 0.34.0 → 0.35.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 +13 -3
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
3
4
|
dir?: string | undefined;
|
|
4
5
|
slot?: string | undefined;
|
|
@@ -6,14 +7,15 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
6
7
|
title?: string | undefined;
|
|
7
8
|
tabIndex?: number | undefined;
|
|
8
9
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
10
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
9
11
|
hidden?: boolean | undefined;
|
|
12
|
+
rel?: string | undefined;
|
|
10
13
|
id?: string | undefined;
|
|
11
14
|
className?: string | undefined;
|
|
12
15
|
color?: string | undefined;
|
|
13
16
|
lang?: string | undefined;
|
|
14
17
|
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
15
18
|
accessKey?: string | undefined;
|
|
16
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
17
19
|
role?: import("react").AriaRole | undefined;
|
|
18
20
|
'aria-label'?: string | undefined;
|
|
19
21
|
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "grid" | "tree" | undefined;
|
|
@@ -27,6 +29,7 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
27
29
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
28
30
|
nonce?: string | undefined;
|
|
29
31
|
'aria-describedby'?: string | undefined;
|
|
32
|
+
'aria-controls'?: string | undefined;
|
|
30
33
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
31
34
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
32
35
|
'aria-activedescendant'?: string | undefined;
|
|
@@ -36,14 +39,17 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
36
39
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
37
40
|
suppressContentEditableWarning?: boolean | undefined;
|
|
38
41
|
suppressHydrationWarning?: boolean | undefined;
|
|
42
|
+
autoFocus?: boolean | undefined;
|
|
39
43
|
contextMenu?: string | undefined;
|
|
40
44
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
41
45
|
radioGroup?: string | undefined;
|
|
42
46
|
about?: string | undefined;
|
|
47
|
+
content?: string | undefined;
|
|
43
48
|
datatype?: string | undefined;
|
|
44
49
|
inlist?: any;
|
|
45
50
|
property?: string | undefined;
|
|
46
51
|
resource?: string | undefined;
|
|
52
|
+
rev?: string | undefined;
|
|
47
53
|
typeof?: string | undefined;
|
|
48
54
|
vocab?: string | undefined;
|
|
49
55
|
autoCapitalize?: string | undefined;
|
|
@@ -60,12 +66,15 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
60
66
|
is?: string | undefined;
|
|
61
67
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
62
68
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
|
|
69
|
+
'aria-braillelabel'?: string | undefined;
|
|
70
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
63
71
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
64
72
|
'aria-colcount'?: number | undefined;
|
|
65
73
|
'aria-colindex'?: number | undefined;
|
|
74
|
+
'aria-colindextext'?: string | undefined;
|
|
66
75
|
'aria-colspan'?: number | undefined;
|
|
67
|
-
'aria-controls'?: string | undefined;
|
|
68
76
|
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
77
|
+
'aria-description'?: string | undefined;
|
|
69
78
|
'aria-details'?: string | undefined;
|
|
70
79
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
71
80
|
'aria-errormessage'?: string | undefined;
|
|
@@ -87,6 +96,7 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
87
96
|
'aria-roledescription'?: string | undefined;
|
|
88
97
|
'aria-rowcount'?: number | undefined;
|
|
89
98
|
'aria-rowindex'?: number | undefined;
|
|
99
|
+
'aria-rowindextext'?: string | undefined;
|
|
90
100
|
'aria-rowspan'?: number | undefined;
|
|
91
101
|
'aria-setsize'?: number | undefined;
|
|
92
102
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
@@ -95,7 +105,7 @@ export declare const ActionMenu: import("react").ComponentType<Partial<{
|
|
|
95
105
|
'aria-valuenow'?: number | undefined;
|
|
96
106
|
'aria-valuetext'?: string | undefined;
|
|
97
107
|
dangerouslySetInnerHTML?: {
|
|
98
|
-
__html: string;
|
|
108
|
+
__html: string | TrustedHTML;
|
|
99
109
|
} | undefined;
|
|
100
110
|
onCopy?: import("react").ClipboardEventHandler<import("action-menu/src").ActionMenu> | undefined;
|
|
101
111
|
onCopyCapture?: import("react").ClipboardEventHandler<import("action-menu/src").ActionMenu> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-menu",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.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-menu": "^0.
|
|
33
|
+
"@spectrum-web-components/action-menu": "^0.35.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": "1ee5a6c92838cdf48321276d97f61c20f8476ac1"
|
|
44
44
|
}
|