wacomm 2.29.0 → 2.29.2
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/svgTags/SvgTag.d.ts +1 -2
- package/dist/svgTags/tags/locations/CityTag.d.ts +3 -1
- package/dist/svgTags/tags/locations/LocationPointTag.d.ts +3 -1
- package/dist/svgTags/tags/locations/StreetTag.d.ts +3 -1
- package/dist/wacomm.cjs.js +2 -2
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +10 -10
- package/package.json +1 -1
package/dist/svgTags/SvgTag.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { ZeroFuncType } from 'waujs';
|
|
2
2
|
import { ElementType } from 'react';
|
|
3
|
-
import { SvgSize } from 'wasvg';
|
|
4
3
|
export interface IconProps {
|
|
5
4
|
Svg: ElementType;
|
|
6
5
|
className?: string;
|
|
7
|
-
size?:
|
|
6
|
+
size?: number;
|
|
8
7
|
}
|
|
9
8
|
interface SvgTagProps {
|
|
10
9
|
label?: string;
|
|
@@ -2,6 +2,8 @@ import { ZeroFuncType } from 'waujs';
|
|
|
2
2
|
interface CityTagProps {
|
|
3
3
|
label: string;
|
|
4
4
|
onClick?: ZeroFuncType;
|
|
5
|
+
isVertical?: boolean;
|
|
6
|
+
svgSize?: number;
|
|
5
7
|
}
|
|
6
|
-
declare function CityTag({ label, onClick }: CityTagProps): import("react").JSX.Element;
|
|
8
|
+
declare function CityTag({ label, onClick, isVertical, svgSize }: CityTagProps): import("react").JSX.Element;
|
|
7
9
|
export default CityTag;
|
|
@@ -2,6 +2,8 @@ import { ZeroFuncType } from 'waujs';
|
|
|
2
2
|
interface LocationPointTagProps {
|
|
3
3
|
label: string;
|
|
4
4
|
onClick?: ZeroFuncType;
|
|
5
|
+
isVertical?: boolean;
|
|
6
|
+
svgSize?: number;
|
|
5
7
|
}
|
|
6
|
-
declare function LocationPointTag({ label, onClick }: LocationPointTagProps): import("react").JSX.Element;
|
|
8
|
+
declare function LocationPointTag({ label, onClick, isVertical, svgSize }: LocationPointTagProps): import("react").JSX.Element;
|
|
7
9
|
export default LocationPointTag;
|
|
@@ -2,6 +2,8 @@ import { ZeroFuncType } from 'waujs';
|
|
|
2
2
|
interface StreetTagProps {
|
|
3
3
|
label: string;
|
|
4
4
|
onClick?: ZeroFuncType;
|
|
5
|
+
isVertical?: boolean;
|
|
6
|
+
svgSize?: number;
|
|
5
7
|
}
|
|
6
|
-
declare function StreetTag({ label, onClick }: StreetTagProps): import("react").JSX.Element;
|
|
8
|
+
declare function StreetTag({ label, onClick, isVertical, svgSize }: StreetTagProps): import("react").JSX.Element;
|
|
7
9
|
export default StreetTag;
|