@swc-react/tags 0.35.0 → 0.35.1-rc.15
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 +42 -42
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -10,6 +10,16 @@ export declare const Tag: import("react").ComponentType<Partial<{
|
|
|
10
10
|
id?: string | undefined;
|
|
11
11
|
className?: string | 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;
|
|
@@ -17,23 +27,15 @@ export declare const Tag: import("react").ComponentType<Partial<{
|
|
|
17
27
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
18
28
|
suppressContentEditableWarning?: boolean | undefined;
|
|
19
29
|
suppressHydrationWarning?: boolean | undefined;
|
|
20
|
-
accessKey?: string | undefined;
|
|
21
30
|
autoFocus?: boolean | undefined;
|
|
22
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
23
31
|
contextMenu?: string | undefined;
|
|
24
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
25
|
-
hidden?: boolean | undefined;
|
|
26
|
-
lang?: string | undefined;
|
|
27
|
-
nonce?: string | undefined;
|
|
28
32
|
placeholder?: string | undefined;
|
|
29
33
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
|
-
translate?: "yes" | "no" | undefined;
|
|
31
34
|
radioGroup?: string | undefined;
|
|
32
35
|
about?: string | undefined;
|
|
33
36
|
content?: string | undefined;
|
|
34
37
|
datatype?: string | undefined;
|
|
35
38
|
inlist?: any;
|
|
36
|
-
prefix?: string | undefined;
|
|
37
39
|
property?: string | undefined;
|
|
38
40
|
resource?: string | undefined;
|
|
39
41
|
rev?: string | undefined;
|
|
@@ -51,7 +53,6 @@ export declare const Tag: import("react").ComponentType<Partial<{
|
|
|
51
53
|
results?: number | undefined;
|
|
52
54
|
security?: string | undefined;
|
|
53
55
|
unselectable?: "on" | "off" | undefined;
|
|
54
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
55
56
|
is?: string | undefined;
|
|
56
57
|
'aria-activedescendant'?: string | undefined;
|
|
57
58
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -103,7 +104,6 @@ export declare const Tag: 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,8 +286,16 @@ export declare const Tag: import("react").ComponentType<Partial<{
|
|
|
286
286
|
autofocus: boolean;
|
|
287
287
|
normalize: () => void;
|
|
288
288
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
289
|
-
|
|
290
|
-
|
|
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>;
|
|
291
299
|
readonly accessKeyLabel: string;
|
|
292
300
|
autocapitalize: string;
|
|
293
301
|
inert: boolean;
|
|
@@ -579,17 +587,9 @@ export declare const Tag: import("react").ComponentType<Partial<{
|
|
|
579
587
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
580
588
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
581
589
|
readonly dataset: DOMStringMap;
|
|
590
|
+
deletable: boolean;
|
|
591
|
+
readonly: boolean;
|
|
582
592
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
583
|
-
connectedCallback: () => void;
|
|
584
|
-
disconnectedCallback: () => void;
|
|
585
|
-
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
586
|
-
isUpdatePending: boolean;
|
|
587
|
-
hasUpdated: boolean;
|
|
588
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
589
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
590
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
591
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
592
|
-
readonly updateComplete: Promise<boolean>;
|
|
593
593
|
isLTR: boolean;
|
|
594
594
|
hasVisibleFocusInTree: () => boolean;
|
|
595
595
|
} & {
|
|
@@ -605,6 +605,16 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
605
605
|
id?: string | undefined;
|
|
606
606
|
className?: string | undefined;
|
|
607
607
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
608
|
+
accessKey?: string | undefined;
|
|
609
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
610
|
+
hidden?: boolean | undefined;
|
|
611
|
+
lang?: string | undefined;
|
|
612
|
+
translate?: "yes" | "no" | undefined;
|
|
613
|
+
prefix?: string | undefined;
|
|
614
|
+
children?: import("react").ReactNode;
|
|
615
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
616
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
617
|
+
nonce?: string | undefined;
|
|
608
618
|
role?: import("react").AriaRole | undefined;
|
|
609
619
|
'aria-label'?: string | undefined;
|
|
610
620
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
@@ -612,23 +622,15 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
612
622
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
613
623
|
suppressContentEditableWarning?: boolean | undefined;
|
|
614
624
|
suppressHydrationWarning?: boolean | undefined;
|
|
615
|
-
accessKey?: string | undefined;
|
|
616
625
|
autoFocus?: boolean | undefined;
|
|
617
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
618
626
|
contextMenu?: string | undefined;
|
|
619
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
620
|
-
hidden?: boolean | undefined;
|
|
621
|
-
lang?: string | undefined;
|
|
622
|
-
nonce?: string | undefined;
|
|
623
627
|
placeholder?: string | undefined;
|
|
624
628
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
625
|
-
translate?: "yes" | "no" | undefined;
|
|
626
629
|
radioGroup?: string | undefined;
|
|
627
630
|
about?: string | undefined;
|
|
628
631
|
content?: string | undefined;
|
|
629
632
|
datatype?: string | undefined;
|
|
630
633
|
inlist?: any;
|
|
631
|
-
prefix?: string | undefined;
|
|
632
634
|
property?: string | undefined;
|
|
633
635
|
resource?: string | undefined;
|
|
634
636
|
rev?: string | undefined;
|
|
@@ -646,7 +648,6 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
646
648
|
results?: number | undefined;
|
|
647
649
|
security?: string | undefined;
|
|
648
650
|
unselectable?: "on" | "off" | undefined;
|
|
649
|
-
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
650
651
|
is?: string | undefined;
|
|
651
652
|
'aria-activedescendant'?: string | undefined;
|
|
652
653
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -698,7 +699,6 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
698
699
|
'aria-valuemin'?: number | undefined;
|
|
699
700
|
'aria-valuenow'?: number | undefined;
|
|
700
701
|
'aria-valuetext'?: string | undefined;
|
|
701
|
-
children?: import("react").ReactNode;
|
|
702
702
|
dangerouslySetInnerHTML?: {
|
|
703
703
|
__html: string | TrustedHTML;
|
|
704
704
|
} | undefined;
|
|
@@ -879,6 +879,16 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
879
879
|
autofocus: boolean;
|
|
880
880
|
normalize: () => void;
|
|
881
881
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
882
|
+
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
883
|
+
isUpdatePending: boolean;
|
|
884
|
+
hasUpdated: boolean;
|
|
885
|
+
addController: (controller: import("lit").ReactiveController) => void;
|
|
886
|
+
removeController: (controller: import("lit").ReactiveController) => void;
|
|
887
|
+
connectedCallback: () => void;
|
|
888
|
+
disconnectedCallback: () => void;
|
|
889
|
+
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
890
|
+
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
891
|
+
readonly updateComplete: Promise<boolean>;
|
|
882
892
|
readonly accessKeyLabel: string;
|
|
883
893
|
autocapitalize: string;
|
|
884
894
|
inert: boolean;
|
|
@@ -1171,16 +1181,6 @@ export declare const Tags: import("react").ComponentType<Partial<{
|
|
|
1171
1181
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
1172
1182
|
readonly dataset: DOMStringMap;
|
|
1173
1183
|
readonly renderOptions: import("lit-html").RenderOptions;
|
|
1174
|
-
connectedCallback: () => void;
|
|
1175
|
-
disconnectedCallback: () => void;
|
|
1176
|
-
readonly renderRoot: HTMLElement | ShadowRoot;
|
|
1177
|
-
isUpdatePending: boolean;
|
|
1178
|
-
hasUpdated: boolean;
|
|
1179
|
-
addController: (controller: import("lit").ReactiveController) => void;
|
|
1180
|
-
removeController: (controller: import("lit").ReactiveController) => void;
|
|
1181
|
-
attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
|
|
1182
|
-
requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
|
|
1183
|
-
readonly updateComplete: Promise<boolean>;
|
|
1184
1184
|
isLTR: boolean;
|
|
1185
1185
|
hasVisibleFocusInTree: () => boolean;
|
|
1186
1186
|
defaultNodes: Node[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/tags",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.1-rc.15+9b76319e4",
|
|
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/tags": "^0.35.
|
|
33
|
+
"@spectrum-web-components/tags": "^0.35.1-rc.15+9b76319e4"
|
|
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": "9b76319e4f1cc7cb0dd03e9d9debf544e5bed4e9"
|
|
44
44
|
}
|