@swc-react/icons 0.34.0 → 0.35.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 +21 -2
- package/package.json +3 -3
package/next.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
3
4
|
dir?: string | undefined;
|
|
4
5
|
slot?: string | undefined;
|
|
@@ -12,6 +13,7 @@ export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
|
12
13
|
suppressContentEditableWarning?: boolean | undefined;
|
|
13
14
|
suppressHydrationWarning?: boolean | undefined;
|
|
14
15
|
accessKey?: string | undefined;
|
|
16
|
+
autoFocus?: boolean | undefined;
|
|
15
17
|
className?: string | undefined;
|
|
16
18
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
17
19
|
contextMenu?: string | undefined;
|
|
@@ -26,11 +28,14 @@ export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
|
26
28
|
translate?: "yes" | "no" | undefined;
|
|
27
29
|
radioGroup?: string | undefined;
|
|
28
30
|
about?: string | undefined;
|
|
31
|
+
content?: string | undefined;
|
|
29
32
|
datatype?: string | undefined;
|
|
30
33
|
inlist?: any;
|
|
31
34
|
prefix?: string | undefined;
|
|
32
35
|
property?: string | undefined;
|
|
36
|
+
rel?: string | undefined;
|
|
33
37
|
resource?: string | undefined;
|
|
38
|
+
rev?: string | undefined;
|
|
34
39
|
typeof?: string | undefined;
|
|
35
40
|
vocab?: string | undefined;
|
|
36
41
|
autoCapitalize?: string | undefined;
|
|
@@ -50,14 +55,18 @@ export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
|
50
55
|
'aria-activedescendant'?: string | undefined;
|
|
51
56
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
52
57
|
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
58
|
+
'aria-braillelabel'?: string | undefined;
|
|
59
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
53
60
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
54
61
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
55
62
|
'aria-colcount'?: number | undefined;
|
|
56
63
|
'aria-colindex'?: number | undefined;
|
|
64
|
+
'aria-colindextext'?: string | undefined;
|
|
57
65
|
'aria-colspan'?: number | undefined;
|
|
58
66
|
'aria-controls'?: string | undefined;
|
|
59
67
|
'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
60
68
|
'aria-describedby'?: string | undefined;
|
|
69
|
+
'aria-description'?: string | undefined;
|
|
61
70
|
'aria-details'?: string | undefined;
|
|
62
71
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
63
72
|
'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
@@ -85,6 +94,7 @@ export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
|
85
94
|
'aria-roledescription'?: string | undefined;
|
|
86
95
|
'aria-rowcount'?: number | undefined;
|
|
87
96
|
'aria-rowindex'?: number | undefined;
|
|
97
|
+
'aria-rowindextext'?: string | undefined;
|
|
88
98
|
'aria-rowspan'?: number | undefined;
|
|
89
99
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
90
100
|
'aria-setsize'?: number | undefined;
|
|
@@ -95,7 +105,7 @@ export declare const IconsLarge: import("react").ComponentType<Partial<{
|
|
|
95
105
|
'aria-valuetext'?: string | undefined;
|
|
96
106
|
children?: import("react").ReactNode;
|
|
97
107
|
dangerouslySetInnerHTML?: {
|
|
98
|
-
__html: string;
|
|
108
|
+
__html: string | TrustedHTML;
|
|
99
109
|
} | undefined;
|
|
100
110
|
onCopy?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
|
|
101
111
|
onCopyCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
|
|
@@ -594,6 +604,7 @@ export declare const IconsMedium: import("react").ComponentType<Partial<{
|
|
|
594
604
|
suppressContentEditableWarning?: boolean | undefined;
|
|
595
605
|
suppressHydrationWarning?: boolean | undefined;
|
|
596
606
|
accessKey?: string | undefined;
|
|
607
|
+
autoFocus?: boolean | undefined;
|
|
597
608
|
className?: string | undefined;
|
|
598
609
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
599
610
|
contextMenu?: string | undefined;
|
|
@@ -608,11 +619,14 @@ export declare const IconsMedium: import("react").ComponentType<Partial<{
|
|
|
608
619
|
translate?: "yes" | "no" | undefined;
|
|
609
620
|
radioGroup?: string | undefined;
|
|
610
621
|
about?: string | undefined;
|
|
622
|
+
content?: string | undefined;
|
|
611
623
|
datatype?: string | undefined;
|
|
612
624
|
inlist?: any;
|
|
613
625
|
prefix?: string | undefined;
|
|
614
626
|
property?: string | undefined;
|
|
627
|
+
rel?: string | undefined;
|
|
615
628
|
resource?: string | undefined;
|
|
629
|
+
rev?: string | undefined;
|
|
616
630
|
typeof?: string | undefined;
|
|
617
631
|
vocab?: string | undefined;
|
|
618
632
|
autoCapitalize?: string | undefined;
|
|
@@ -632,14 +646,18 @@ export declare const IconsMedium: import("react").ComponentType<Partial<{
|
|
|
632
646
|
'aria-activedescendant'?: string | undefined;
|
|
633
647
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
634
648
|
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
649
|
+
'aria-braillelabel'?: string | undefined;
|
|
650
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
635
651
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
636
652
|
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
637
653
|
'aria-colcount'?: number | undefined;
|
|
638
654
|
'aria-colindex'?: number | undefined;
|
|
655
|
+
'aria-colindextext'?: string | undefined;
|
|
639
656
|
'aria-colspan'?: number | undefined;
|
|
640
657
|
'aria-controls'?: string | undefined;
|
|
641
658
|
'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
642
659
|
'aria-describedby'?: string | undefined;
|
|
660
|
+
'aria-description'?: string | undefined;
|
|
643
661
|
'aria-details'?: string | undefined;
|
|
644
662
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
645
663
|
'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
@@ -667,6 +685,7 @@ export declare const IconsMedium: import("react").ComponentType<Partial<{
|
|
|
667
685
|
'aria-roledescription'?: string | undefined;
|
|
668
686
|
'aria-rowcount'?: number | undefined;
|
|
669
687
|
'aria-rowindex'?: number | undefined;
|
|
688
|
+
'aria-rowindextext'?: string | undefined;
|
|
670
689
|
'aria-rowspan'?: number | undefined;
|
|
671
690
|
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
672
691
|
'aria-setsize'?: number | undefined;
|
|
@@ -677,7 +696,7 @@ export declare const IconsMedium: import("react").ComponentType<Partial<{
|
|
|
677
696
|
'aria-valuetext'?: string | undefined;
|
|
678
697
|
children?: import("react").ReactNode;
|
|
679
698
|
dangerouslySetInnerHTML?: {
|
|
680
|
-
__html: string;
|
|
699
|
+
__html: string | TrustedHTML;
|
|
681
700
|
} | undefined;
|
|
682
701
|
onCopy?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
|
|
683
702
|
onCopyCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-react/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.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/icons": "^0.
|
|
33
|
+
"@spectrum-web-components/icons": "^0.35.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": "1ee5a6c92838cdf48321276d97f61c20f8476ac1"
|
|
44
44
|
}
|