@swc-react/card 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 +6 -6
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -10,9 +10,6 @@ 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;
|
|
16
13
|
accessKey?: string | undefined;
|
|
17
14
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
18
15
|
hidden?: boolean | undefined;
|
|
@@ -23,6 +20,9 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
23
20
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
24
21
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
25
22
|
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,14 +289,13 @@ 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;
|
|
295
292
|
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
296
293
|
isUpdatePending: boolean;
|
|
297
294
|
hasUpdated: boolean;
|
|
298
295
|
addController: (controller: import("lit").ReactiveController) => void;
|
|
299
296
|
removeController: (controller: import("lit").ReactiveController) => void;
|
|
297
|
+
connectedCallback: () => void;
|
|
298
|
+
disconnectedCallback: () => void;
|
|
300
299
|
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
301
300
|
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
302
301
|
readonly updateComplete: Promise<boolean>;
|
|
@@ -592,6 +591,7 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
592
591
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
593
592
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
594
593
|
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.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/card": "^0.
|
|
33
|
+
"@spectrum-web-components/card": "^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
|
}
|