@swc-react/action-group 0.36.0 → 0.37.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 +29 -29
- 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,15 +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
|
-
|
|
297
|
-
|
|
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>;
|
|
298
299
|
readonly accessKeyLabel: string;
|
|
299
300
|
autocapitalize: string;
|
|
300
301
|
inert: boolean;
|
|
@@ -586,20 +587,19 @@ export declare const ActionGroup: import("react").ComponentType<Partial<{
|
|
|
586
587
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
587
588
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
588
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;
|
|
598
|
+
slotElement: HTMLSlotElement;
|
|
589
599
|
buttons: import("action-button/src").ActionButton[];
|
|
590
600
|
_buttons: import("action-button/src").ActionButton[];
|
|
591
601
|
rovingTabindexController: import("@spectrum-web-components/reactive-controllers/src/RovingTabindex").RovingTabindexController<import("action-button/src").ActionButton>;
|
|
592
602
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
593
|
-
connectedCallback: () => void;
|
|
594
|
-
disconnectedCallback: () => void;
|
|
595
|
-
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
596
|
-
isUpdatePending: boolean;
|
|
597
|
-
hasUpdated: boolean;
|
|
598
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
599
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
600
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
601
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
602
|
-
readonly updateComplete: Promise<boolean>;
|
|
603
603
|
isLTR: boolean;
|
|
604
604
|
hasVisibleFocusInTree: () => boolean;
|
|
605
605
|
} & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-group",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.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.37.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": "d771f62f0d8063070af43283bb0fd5e3400bad06"
|
|
44
44
|
}
|