@swc-react/card 0.35.1-rc.26 → 0.36.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 +6 -6
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
10
10
|
className?: string | undefined;
|
|
11
11
|
tabIndex?: number | undefined;
|
|
12
12
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
13
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
14
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
15
|
+
role?: import("react").AriaRole | undefined;
|
|
13
16
|
accessKey?: string | undefined;
|
|
14
17
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
15
18
|
hidden?: boolean | undefined;
|
|
@@ -20,9 +23,6 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
20
23
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
21
24
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
22
25
|
nonce?: string | undefined;
|
|
23
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
24
|
-
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
25
|
-
role?: import("react").AriaRole | undefined;
|
|
26
26
|
'aria-orientation'?: "vertical" | "horizontal" | undefined;
|
|
27
27
|
defaultChecked?: boolean | undefined;
|
|
28
28
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -289,13 +289,14 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
289
289
|
variant: "standard" | "gallery" | "quiet";
|
|
290
290
|
autofocus: boolean;
|
|
291
291
|
normalize: () => void;
|
|
292
|
+
readonly renderOptions: import("lit-html").RenderOptions;
|
|
293
|
+
connectedCallback: () => void;
|
|
294
|
+
disconnectedCallback: () => void;
|
|
292
295
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
293
296
|
isUpdatePending: boolean;
|
|
294
297
|
hasUpdated: boolean;
|
|
295
298
|
addController: (controller: import("lit").ReactiveController) => void;
|
|
296
299
|
removeController: (controller: import("lit").ReactiveController) => void;
|
|
297
|
-
connectedCallback: () => void;
|
|
298
|
-
disconnectedCallback: () => void;
|
|
299
300
|
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
300
301
|
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
301
302
|
readonly updateComplete: Promise<boolean>;
|
|
@@ -591,7 +592,6 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
591
592
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
592
593
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
593
594
|
readonly dataset: DOMStringMap;
|
|
594
|
-
readonly renderOptions: import("lit-html").RenderOptions;
|
|
595
595
|
isLTR: boolean;
|
|
596
596
|
hasVisibleFocusInTree: () => boolean;
|
|
597
597
|
asset?: "file" | "folder" | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/card",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.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/card": "^0.
|
|
33
|
+
"@spectrum-web-components/card": "^0.36.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": "a532ff8a410abeefb54d9638a2316ae82570566e"
|
|
44
44
|
}
|