@swc-react/action-bar 0.33.3-overlay.61 → 0.34.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 +9 -9
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -6,11 +6,13 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
6
6
|
slot?: string | undefined;
|
|
7
7
|
style?: import("react").CSSProperties | undefined;
|
|
8
8
|
title?: string | undefined;
|
|
9
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
10
|
+
accessKey?: string | undefined;
|
|
11
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
9
12
|
defaultChecked?: boolean | undefined;
|
|
10
13
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
11
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
12
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
13
|
-
accessKey?: string | undefined;
|
|
14
16
|
className?: string | undefined;
|
|
15
17
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
16
18
|
contextMenu?: string | undefined;
|
|
@@ -43,18 +45,18 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
43
45
|
results?: number | undefined;
|
|
44
46
|
security?: string | undefined;
|
|
45
47
|
unselectable?: "on" | "off" | undefined;
|
|
46
|
-
inputMode?: "
|
|
48
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
47
49
|
is?: string | undefined;
|
|
48
50
|
'aria-activedescendant'?: string | undefined;
|
|
49
51
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
50
|
-
'aria-autocomplete'?: "
|
|
52
|
+
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
|
|
51
53
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
52
54
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
53
55
|
'aria-colcount'?: number | undefined;
|
|
54
56
|
'aria-colindex'?: number | undefined;
|
|
55
57
|
'aria-colspan'?: number | undefined;
|
|
56
58
|
'aria-controls'?: string | undefined;
|
|
57
|
-
'aria-current'?: boolean | "time" | "
|
|
59
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
58
60
|
'aria-describedby'?: string | undefined;
|
|
59
61
|
'aria-details'?: string | undefined;
|
|
60
62
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -64,14 +66,12 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
64
66
|
'aria-flowto'?: string | undefined;
|
|
65
67
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
66
68
|
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
67
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
68
69
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
69
70
|
'aria-keyshortcuts'?: string | undefined;
|
|
70
71
|
'aria-label'?: string | undefined;
|
|
71
72
|
'aria-labelledby'?: string | undefined;
|
|
72
73
|
'aria-level'?: number | undefined;
|
|
73
74
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
74
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
75
75
|
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
76
76
|
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
77
77
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
@@ -271,6 +271,9 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
271
271
|
(options?: ScrollToOptions | undefined): void;
|
|
272
272
|
(x: number, y: number): void;
|
|
273
273
|
};
|
|
274
|
+
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
275
|
+
readonly renderOptions: import("lit-html").RenderOptions;
|
|
276
|
+
remove: () => void;
|
|
274
277
|
normalize: () => void;
|
|
275
278
|
flexible: boolean;
|
|
276
279
|
variant: string;
|
|
@@ -446,11 +449,9 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
446
449
|
ariaValueMin: string | null;
|
|
447
450
|
ariaValueNow: string | null;
|
|
448
451
|
ariaValueText: string | null;
|
|
449
|
-
animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
|
|
450
452
|
getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
|
|
451
453
|
after: (...nodes: (string | Node)[]) => void;
|
|
452
454
|
before: (...nodes: (string | Node)[]) => void;
|
|
453
|
-
remove: () => void;
|
|
454
455
|
replaceWith: (...nodes: (string | Node)[]) => void;
|
|
455
456
|
innerHTML: string;
|
|
456
457
|
readonly nextElementSibling: Element | null;
|
|
@@ -569,7 +570,6 @@ export declare const ActionBar: import("react").ComponentType<Partial<{
|
|
|
569
570
|
autofocus: boolean;
|
|
570
571
|
readonly dataset: DOMStringMap;
|
|
571
572
|
render: () => import("lit-html").TemplateResult<2 | 1>;
|
|
572
|
-
readonly renderOptions: import("lit-html").RenderOptions;
|
|
573
573
|
connectedCallback: () => void;
|
|
574
574
|
disconnectedCallback: () => void;
|
|
575
575
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/action-bar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.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.34.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": "f9b3294d67cdd52b2c36897cdc1c20ceaeb019cf"
|
|
44
44
|
}
|