wasvg 1.14.0 → 1.15.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/dist/index.d.ts +31 -16
- package/dist/wasvg.cjs.js +95 -12
- package/dist/wasvg.css +1 -1
- package/dist/wasvg.es.js +1631 -1082
- package/package.json +3 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { CardGamesInterestType } from 'wenum';
|
|
2
|
+
import { CategoryType } from 'wenum';
|
|
3
|
+
import { InterestType } from 'wenum';
|
|
3
4
|
import { JSX } from 'react/jsx-runtime';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { MusicInterestType } from 'wenum';
|
|
6
|
+
import { PetsInterestType } from 'wenum';
|
|
7
|
+
import { SportsInterestType } from 'wenum';
|
|
7
8
|
|
|
8
9
|
export declare function AddSvg({ className, size }: SvgProps): JSX.Element;
|
|
9
10
|
|
|
@@ -17,16 +18,26 @@ export declare function Basketball({ className, size }: SvgProps): JSX.Element;
|
|
|
17
18
|
|
|
18
19
|
export declare function Biking({ className, size }: SvgProps): JSX.Element;
|
|
19
20
|
|
|
21
|
+
export declare function Blackjack({ className, size }: SvgProps): JSX.Element;
|
|
22
|
+
|
|
20
23
|
export declare function CalendarEventSvg({ className, size }: SvgProps): JSX.Element;
|
|
21
24
|
|
|
22
25
|
export declare function CalendarSvg({ className, size }: SvgProps): JSX.Element;
|
|
23
26
|
|
|
27
|
+
export declare function CardGamesInterestSvg({ interestType, className, size }: CardGamesInterestSvgProps): JSX.Element | undefined;
|
|
28
|
+
|
|
29
|
+
declare interface CardGamesInterestSvgProps {
|
|
30
|
+
interestType: CardGamesInterestType;
|
|
31
|
+
className?: string;
|
|
32
|
+
size?: SvgSize;
|
|
33
|
+
}
|
|
34
|
+
|
|
24
35
|
export declare function Cat({ className, size }: SvgProps): JSX.Element;
|
|
25
36
|
|
|
26
|
-
export declare function CategorySvg({
|
|
37
|
+
export declare function CategorySvg({ categoryType, size, className }: CategorySvgProps): JSX.Element | null;
|
|
27
38
|
|
|
28
39
|
declare interface CategorySvgProps {
|
|
29
|
-
|
|
40
|
+
categoryType: CategoryType;
|
|
30
41
|
size?: SvgSize;
|
|
31
42
|
className?: string;
|
|
32
43
|
}
|
|
@@ -83,11 +94,11 @@ export declare function HomeSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
83
94
|
|
|
84
95
|
export declare function ImageSvg({ className, size }: SvgProps): JSX.Element;
|
|
85
96
|
|
|
86
|
-
export declare function InterestSvg({
|
|
97
|
+
export declare function InterestSvg({ interestType, categoryType, size, className }: InterestSvgProps): JSX.Element | undefined;
|
|
87
98
|
|
|
88
99
|
declare interface InterestSvgProps {
|
|
89
|
-
|
|
90
|
-
|
|
100
|
+
interestType: InterestType;
|
|
101
|
+
categoryType: CategoryType;
|
|
91
102
|
size?: SvgSize;
|
|
92
103
|
className?: string;
|
|
93
104
|
}
|
|
@@ -108,10 +119,10 @@ export declare function MenuSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
108
119
|
|
|
109
120
|
export declare function MinusSvg({ className, size }: SvgProps): JSX.Element;
|
|
110
121
|
|
|
111
|
-
export declare function MusicInterestSvg({
|
|
122
|
+
export declare function MusicInterestSvg({ interestType, className, size }: MusicInterestSvgProps): JSX.Element | undefined;
|
|
112
123
|
|
|
113
124
|
declare interface MusicInterestSvgProps {
|
|
114
|
-
|
|
125
|
+
interestType: MusicInterestType;
|
|
115
126
|
className?: string;
|
|
116
127
|
size?: SvgSize;
|
|
117
128
|
}
|
|
@@ -120,16 +131,18 @@ export declare function NewsfeedSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
120
131
|
|
|
121
132
|
export declare function NotificationSvg({ className, size }: SvgProps): JSX.Element;
|
|
122
133
|
|
|
134
|
+
export declare function Omaha({ className, size }: SvgProps): JSX.Element;
|
|
135
|
+
|
|
123
136
|
export declare function PartnersSvg({ className, size }: SvgProps): JSX.Element;
|
|
124
137
|
|
|
125
138
|
export declare function PasswordHideSvg({ className, size }: SvgProps): JSX.Element;
|
|
126
139
|
|
|
127
140
|
export declare function PasswordShowSvg({ className, size }: SvgProps): JSX.Element;
|
|
128
141
|
|
|
129
|
-
export declare function PetsInterestSvg({
|
|
142
|
+
export declare function PetsInterestSvg({ interestType, className, size }: PetsInterestSvgProps): JSX.Element | undefined;
|
|
130
143
|
|
|
131
144
|
declare interface PetsInterestSvgProps {
|
|
132
|
-
|
|
145
|
+
interestType: PetsInterestType;
|
|
133
146
|
className?: string;
|
|
134
147
|
size?: SvgSize;
|
|
135
148
|
}
|
|
@@ -154,10 +167,10 @@ export declare function Skiing({ className, size }: SvgProps): JSX.Element;
|
|
|
154
167
|
|
|
155
168
|
export declare function Soccer({ className, size }: SvgProps): JSX.Element;
|
|
156
169
|
|
|
157
|
-
export declare function SportsInterestSvg({
|
|
170
|
+
export declare function SportsInterestSvg({ interestType, className, size }: SportsInterestSvgProps): JSX.Element | undefined;
|
|
158
171
|
|
|
159
172
|
declare interface SportsInterestSvgProps {
|
|
160
|
-
|
|
173
|
+
interestType: SportsInterestType;
|
|
161
174
|
className?: string;
|
|
162
175
|
size?: SvgSize;
|
|
163
176
|
}
|
|
@@ -189,6 +202,8 @@ export declare function TeamSvg({ className, size }: SvgProps): JSX.Element;
|
|
|
189
202
|
|
|
190
203
|
export declare function Tennis({ className, size }: SvgProps): JSX.Element;
|
|
191
204
|
|
|
205
|
+
export declare function TexasHoldem({ className, size }: SvgProps): JSX.Element;
|
|
206
|
+
|
|
192
207
|
export declare function TextPostSvg({ className, size }: SvgProps): JSX.Element;
|
|
193
208
|
|
|
194
209
|
export declare function UpArrowSvg({ className, size }: SvgProps): JSX.Element;
|