gd-bs 6.2.2 → 6.2.3

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/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?: HTMLElement | Function;
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?: HTMLElement | Function;
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?: HTMLElement | Function;
2132
+ iconType?: SVGImageElement | Function;
2133
2133
  isActive?: boolean;
2134
2134
  isButton?: boolean;
2135
2135
  isDisabled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.2.2",
3
+ "version": "6.2.3",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -90,7 +90,7 @@ export interface IButtonProps extends IBaseProps<IButton> {
90
90
  href?: string;
91
91
  iconClassName?: string;
92
92
  iconSize?: number;
93
- iconType?: HTMLElement | Function;
93
+ iconType?: SVGImageElement | Function;
94
94
  id?: string;
95
95
  isBlock?: boolean;
96
96
  isDisabled?: boolean;
@@ -108,7 +108,7 @@ export interface IDropdownItem {
108
108
  href?: string;
109
109
  iconClassName?: string;
110
110
  iconSize?: number;
111
- iconType?: HTMLElement | Function;
111
+ iconType?: SVGImageElement | Function;
112
112
  isDisabled?: boolean;
113
113
  isDivider?: boolean;
114
114
  isHeader?: boolean;
@@ -55,7 +55,7 @@ export interface IIconLinkProps<T = HTMLElement> extends IBaseProps<IIconLink> {
55
55
  href?: string;
56
56
  iconClassName?: string;
57
57
  iconSize?: number;
58
- iconType?: HTMLElement | Function;
58
+ iconType?: SVGImageElement | Function;
59
59
  type?: number;
60
60
  }
61
61
 
@@ -124,7 +124,7 @@ export interface INavbarItem {
124
124
  href?: string;
125
125
  iconClassName?: string;
126
126
  iconSize?: number;
127
- iconType?: HTMLElement | Function;
127
+ iconType?: SVGImageElement | Function;
128
128
  isActive?: boolean;
129
129
  isButton?: boolean;
130
130
  isDisabled?: boolean;