@swc-react/action-group 0.35.0 → 0.35.1-rc.15
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 +28 -28
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -10,6 +10,16 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
tabIndex?: number | undefined;
|
|
12
12
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
13
|
+
accessKey?: string | undefined;
|
|
14
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
15
|
+
hidden?: boolean | undefined;
|
|
16
|
+
lang?: string | undefined;
|
|
17
|
+
translate?: "yes" | "no" | undefined;
|
|
18
|
+
prefix?: string | undefined;
|
|
19
|
+
children?: import("react").ReactNode;
|
|
20
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
21
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
22
|
+
nonce?: string | undefined;
|
|
13
23
|
role?: import("react").AriaRole | undefined;
|
|
14
24
|
'aria-label'?: string | undefined;
|
|
15
25
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
@@ -21,23 +31,15 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
21
31
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
22
32
|
suppressContentEditableWarning?: boolean | undefined;
|
|
23
33
|
suppressHydrationWarning?: boolean | undefined;
|
|
24
|
-
accessKey?: string | undefined;
|
|
25
34
|
autoFocus?: boolean | undefined;
|
|
26
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
27
35
|
contextMenu?: string | undefined;
|
|
28
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
29
|
-
hidden?: boolean | undefined;
|
|
30
|
-
lang?: string | undefined;
|
|
31
|
-
nonce?: string | undefined;
|
|
32
36
|
placeholder?: string | undefined;
|
|
33
37
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
34
|
-
translate?: "yes" | "no" | undefined;
|
|
35
38
|
radioGroup?: string | undefined;
|
|
36
39
|
about?: string | undefined;
|
|
37
40
|
content?: string | undefined;
|
|
38
41
|
datatype?: string | undefined;
|
|
39
42
|
inlist?: any;
|
|
40
|
-
prefix?: string | undefined;
|
|
41
43
|
property?: string | undefined;
|
|
42
44
|
resource?: string | undefined;
|
|
43
45
|
rev?: string | undefined;
|
|
@@ -55,7 +57,6 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
55
57
|
results?: number | undefined;
|
|
56
58
|
security?: string | undefined;
|
|
57
59
|
unselectable?: "on" | "off" | undefined;
|
|
58
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
59
60
|
is?: string | undefined;
|
|
60
61
|
'aria-activedescendant'?: string | undefined;
|
|
61
62
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -103,7 +104,6 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
103
104
|
'aria-valuemin'?: number | undefined;
|
|
104
105
|
'aria-valuenow'?: number | undefined;
|
|
105
106
|
'aria-valuetext'?: string | undefined;
|
|
106
|
-
children?: import("react").ReactNode;
|
|
107
107
|
dangerouslySetInnerHTML?: {
|
|
108
108
|
__html: string | TrustedHTML;
|
|
109
109
|
} | undefined;
|
|
@@ -286,14 +286,16 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
286
286
|
autofocus: boolean;
|
|
287
287
|
normalize: () => void;
|
|
288
288
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
289
|
+
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
290
|
+
isUpdatePending: boolean;
|
|
291
|
+
hasUpdated: boolean;
|
|
292
|
+
addController: (controller: import("lit").ReactiveController) => void;
|
|
293
|
+
removeController: (controller: import("lit").ReactiveController) => void;
|
|
294
|
+
connectedCallback: () => void;
|
|
295
|
+
disconnectedCallback: () => void;
|
|
296
|
+
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
297
|
+
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
298
|
+
readonly updateComplete: Promise<boolean>;
|
|
297
299
|
readonly accessKeyLabel: string;
|
|
298
300
|
autocapitalize: string;
|
|
299
301
|
inert: boolean;
|
|
@@ -585,20 +587,18 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
585
587
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
586
588
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
587
589
|
readonly dataset: DOMStringMap;
|
|
590
|
+
static?: "white" | "black" | undefined;
|
|
591
|
+
quiet: boolean;
|
|
592
|
+
emphasized: boolean;
|
|
593
|
+
selected: string[];
|
|
594
|
+
vertical: boolean;
|
|
595
|
+
compact: boolean;
|
|
596
|
+
justified: boolean;
|
|
597
|
+
selects: "single" | "multiple" | undefined;
|
|
588
598
|
buttons: import("action-button/src").ActionButton[];
|
|
589
599
|
_buttons: import("action-button/src").ActionButton[];
|
|
590
600
|
rovingTabindexController: import("@spectrum-web-components/reactive-controllers/src/RovingTabindex").RovingTabindexController<import("action-button/src").ActionButton>;
|
|
591
601
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
592
|
-
connectedCallback: () => void;
|
|
593
|
-
disconnectedCallback: () => void;
|
|
594
|
-
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
595
|
-
isUpdatePending: boolean;
|
|
596
|
-
hasUpdated: boolean;
|
|
597
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
598
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
599
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
600
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
601
|
-
readonly updateComplete: Promise<boolean>;
|
|
602
602
|
isLTR: boolean;
|
|
603
603
|
hasVisibleFocusInTree: () => boolean;
|
|
604
604
|
} & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-group",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.1-rc.15+9b76319e4",
|
|
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.35.
|
|
33
|
+
"@spectrum-web-components/action-group": "^0.35.1-rc.15+9b76319e4"
|
|
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": "9b76319e4f1cc7cb0dd03e9d9debf544e5bed4e9"
|
|
44
44
|
}
|