@swc-react/card 0.33.3-overlay.66 → 0.34.1-rc.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 +32 -32
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -9,26 +9,29 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
9
9
|
tabIndex?: number | undefined;
|
|
10
10
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
11
11
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
12
|
-
|
|
13
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
14
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
15
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
12
|
+
role?: import("react").AriaRole | undefined;
|
|
16
13
|
accessKey?: string | undefined;
|
|
17
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
18
|
-
contextMenu?: string | undefined;
|
|
19
14
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
20
15
|
hidden?: boolean | undefined;
|
|
21
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
22
|
nonce?: string | undefined;
|
|
23
|
+
'aria-orientation'?: "vertical" | "horizontal" | undefined;
|
|
24
|
+
defaultChecked?: boolean | undefined;
|
|
25
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
26
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
27
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
28
|
+
contextMenu?: string | undefined;
|
|
23
29
|
placeholder?: string | undefined;
|
|
24
30
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
25
|
-
translate?: "yes" | "no" | undefined;
|
|
26
31
|
radioGroup?: string | undefined;
|
|
27
|
-
role?: import("react").AriaRole | undefined;
|
|
28
32
|
about?: string | undefined;
|
|
29
33
|
datatype?: string | undefined;
|
|
30
34
|
inlist?: any;
|
|
31
|
-
prefix?: string | undefined;
|
|
32
35
|
property?: string | undefined;
|
|
33
36
|
resource?: string | undefined;
|
|
34
37
|
typeof?: string | undefined;
|
|
@@ -45,7 +48,6 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
45
48
|
results?: number | undefined;
|
|
46
49
|
security?: string | undefined;
|
|
47
50
|
unselectable?: "on" | "off" | undefined;
|
|
48
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
49
51
|
is?: string | undefined;
|
|
50
52
|
'aria-activedescendant'?: string | undefined;
|
|
51
53
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -74,7 +76,6 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
74
76
|
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
75
77
|
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
76
78
|
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
77
|
-
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
78
79
|
'aria-owns'?: string | undefined;
|
|
79
80
|
'aria-placeholder'?: string | undefined;
|
|
80
81
|
'aria-posinset'?: number | undefined;
|
|
@@ -93,7 +94,6 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
93
94
|
'aria-valuemin'?: number | undefined;
|
|
94
95
|
'aria-valuenow'?: number | undefined;
|
|
95
96
|
'aria-valuetext'?: string | undefined;
|
|
96
|
-
children?: import("react").ReactNode;
|
|
97
97
|
dangerouslySetInnerHTML?: {
|
|
98
98
|
__html: string;
|
|
99
99
|
} | undefined;
|
|
@@ -280,14 +280,17 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
280
280
|
variant: "standard" | "gallery" | "quiet";
|
|
281
281
|
autofocus: boolean;
|
|
282
282
|
normalize: () => void;
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
283
|
+
readonly renderOptions: import("lit-html").RenderOptions;
|
|
284
|
+
connectedCallback: () => void;
|
|
285
|
+
disconnectedCallback: () => void;
|
|
286
|
+
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
287
|
+
isUpdatePending: boolean;
|
|
288
|
+
hasUpdated: boolean;
|
|
289
|
+
addController: (controller: import("lit").ReactiveController) => void;
|
|
290
|
+
removeController: (controller: import("lit").ReactiveController) => void;
|
|
291
|
+
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
292
|
+
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
293
|
+
readonly updateComplete: Promise<boolean>;
|
|
291
294
|
readonly accessKeyLabel: string;
|
|
292
295
|
autocapitalize: string;
|
|
293
296
|
inert: boolean;
|
|
@@ -580,20 +583,17 @@ export declare const Card: import("react").ComponentType<Partial<{
|
|
|
580
583
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
581
584
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
582
585
|
readonly dataset: DOMStringMap;
|
|
583
|
-
toggleSelected: () => void;
|
|
584
|
-
readonly renderOptions: import("lit-html").RenderOptions;
|
|
585
|
-
connectedCallback: () => void;
|
|
586
|
-
disconnectedCallback: () => void;
|
|
587
|
-
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
588
|
-
isUpdatePending: boolean;
|
|
589
|
-
hasUpdated: boolean;
|
|
590
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
591
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
592
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
593
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
594
|
-
readonly updateComplete: Promise<boolean>;
|
|
595
586
|
isLTR: boolean;
|
|
596
587
|
hasVisibleFocusInTree: () => boolean;
|
|
588
|
+
asset?: "file" | "folder" | undefined;
|
|
589
|
+
selected: boolean;
|
|
590
|
+
heading: string;
|
|
591
|
+
horizontal: boolean;
|
|
592
|
+
focused: boolean;
|
|
593
|
+
toggles: boolean;
|
|
594
|
+
value: string;
|
|
595
|
+
subheading: string;
|
|
596
|
+
toggleSelected: () => void;
|
|
597
597
|
getSlotContentPresence: (selector: string) => boolean;
|
|
598
598
|
managePresenceObservedSlot: () => void;
|
|
599
599
|
renderAnchor: (options: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/card",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.1-rc.0+1647bfed5",
|
|
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.34.1-rc.0+1647bfed5"
|
|
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": "1647bfed54cb29f3513343cd0d2c2d9e73e1c508"
|
|
44
44
|
}
|