@swc-react/action-group 0.34.1-rc.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 -2
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
3
4
|
dir?: string | undefined;
|
|
5
|
+
rel?: string | undefined;
|
|
4
6
|
id?: string | undefined;
|
|
5
7
|
className?: string | undefined;
|
|
6
8
|
slot?: string | undefined;
|
|
@@ -10,6 +12,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
10
12
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
11
13
|
role?: import("react").AriaRole | undefined;
|
|
12
14
|
'aria-label'?: string | undefined;
|
|
15
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
13
16
|
'aria-haspopup'?: boolean | "true" | "dialog" | "menu" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
14
17
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
15
18
|
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
@@ -19,6 +22,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
19
22
|
suppressContentEditableWarning?: boolean | undefined;
|
|
20
23
|
suppressHydrationWarning?: boolean | undefined;
|
|
21
24
|
accessKey?: string | undefined;
|
|
25
|
+
autoFocus?: boolean | undefined;
|
|
22
26
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
23
27
|
contextMenu?: string | undefined;
|
|
24
28
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -30,11 +34,13 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
30
34
|
translate?: "yes" | "no" | undefined;
|
|
31
35
|
radioGroup?: string | undefined;
|
|
32
36
|
about?: string | undefined;
|
|
37
|
+
content?: string | undefined;
|
|
33
38
|
datatype?: string | undefined;
|
|
34
39
|
inlist?: any;
|
|
35
40
|
prefix?: string | undefined;
|
|
36
41
|
property?: string | undefined;
|
|
37
42
|
resource?: string | undefined;
|
|
43
|
+
rev?: string | undefined;
|
|
38
44
|
typeof?: string | undefined;
|
|
39
45
|
vocab?: string | undefined;
|
|
40
46
|
autoCapitalize?: string | undefined;
|
|
@@ -54,19 +60,22 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
54
60
|
'aria-activedescendant'?: string | undefined;
|
|
55
61
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
56
62
|
'aria-autocomplete'?: "none" | "both" | "list" | "inline" | undefined;
|
|
63
|
+
'aria-braillelabel'?: string | undefined;
|
|
64
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
57
65
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
58
66
|
'aria-colcount'?: number | undefined;
|
|
59
67
|
'aria-colindex'?: number | undefined;
|
|
68
|
+
'aria-colindextext'?: string | undefined;
|
|
60
69
|
'aria-colspan'?: number | undefined;
|
|
61
70
|
'aria-controls'?: string | undefined;
|
|
62
71
|
'aria-current'?: boolean | "true" | "time" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
63
72
|
'aria-describedby'?: string | undefined;
|
|
73
|
+
'aria-description'?: string | undefined;
|
|
64
74
|
'aria-details'?: string | undefined;
|
|
65
75
|
'aria-dropeffect'?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
66
76
|
'aria-errormessage'?: string | undefined;
|
|
67
77
|
'aria-flowto'?: string | undefined;
|
|
68
78
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
69
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
70
79
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
71
80
|
'aria-keyshortcuts'?: string | undefined;
|
|
72
81
|
'aria-labelledby'?: string | undefined;
|
|
@@ -85,6 +94,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
85
94
|
'aria-roledescription'?: string | undefined;
|
|
86
95
|
'aria-rowcount'?: number | undefined;
|
|
87
96
|
'aria-rowindex'?: number | undefined;
|
|
97
|
+
'aria-rowindextext'?: string | undefined;
|
|
88
98
|
'aria-rowspan'?: number | undefined;
|
|
89
99
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
90
100
|
'aria-setsize'?: number | undefined;
|
|
@@ -95,7 +105,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
95
105
|
'aria-valuetext'?: string | undefined;
|
|
96
106
|
children?: import("react").ReactNode;
|
|
97
107
|
dangerouslySetInnerHTML?: {
|
|
98
|
-
__html: string;
|
|
108
|
+
__html: string | TrustedHTML;
|
|
99
109
|
} | undefined;
|
|
100
110
|
onCopy?: import("react").ClipboardEventHandler<import("action-group/src").ActionGroup> | undefined;
|
|
101
111
|
onCopyCapture?: import("react").ClipboardEventHandler<import("action-group/src").ActionGroup> | undefined;
|
|
@@ -276,6 +286,7 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
276
286
|
autofocus: boolean;
|
|
277
287
|
normalize: () => void;
|
|
278
288
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
289
|
+
static?: "white" | "black" | undefined;
|
|
279
290
|
quiet: boolean;
|
|
280
291
|
emphasized: boolean;
|
|
281
292
|
selected: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-group",
|
|
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-group": "^0.
|
|
33
|
+
"@spectrum-web-components/action-group": "^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
|
}
|