gd-bs 6.2.2 → 6.2.4
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/build/components/button/index.js +2 -2
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -3
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/button/index.ts +3 -3
- package/src/components/button/types.d.ts +1 -1
- package/src/components/dropdown/types.d.ts +1 -1
- package/src/components/iconLink/types.d.ts +1 -1
- package/src/components/navbar/types.d.ts +1 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -398,7 +398,7 @@ declare module 'gd-bs/components/button/types' {
|
|
|
398
398
|
href?: string;
|
|
399
399
|
iconClassName?: string;
|
|
400
400
|
iconSize?: number;
|
|
401
|
-
iconType?:
|
|
401
|
+
iconType?: SVGImageElement | Function;
|
|
402
402
|
id?: string;
|
|
403
403
|
isBlock?: boolean;
|
|
404
404
|
isDisabled?: boolean;
|
|
@@ -1060,7 +1060,7 @@ declare module 'gd-bs/components/dropdown/types' {
|
|
|
1060
1060
|
href?: string;
|
|
1061
1061
|
iconClassName?: string;
|
|
1062
1062
|
iconSize?: number;
|
|
1063
|
-
iconType?:
|
|
1063
|
+
iconType?: SVGImageElement | Function;
|
|
1064
1064
|
isDisabled?: boolean;
|
|
1065
1065
|
isDivider?: boolean;
|
|
1066
1066
|
isHeader?: boolean;
|
|
@@ -2129,7 +2129,7 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2129
2129
|
href?: string;
|
|
2130
2130
|
iconClassName?: string;
|
|
2131
2131
|
iconSize?: number;
|
|
2132
|
-
iconType?:
|
|
2132
|
+
iconType?: SVGImageElement | Function;
|
|
2133
2133
|
isActive?: boolean;
|
|
2134
2134
|
isButton?: boolean;
|
|
2135
2135
|
isDisabled?: boolean;
|