gd-bs 5.5.3 → 5.5.6
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/bs.js +1 -1
- package/build/components/nav/index.js +10 -3
- package/build/components/navbar/index.js +2 -0
- package/dist/gd-bs-icons.js +14 -3
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -0
- package/dist/gd-bs.js +3 -3
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/bs.scss +4 -0
- package/src/components/nav/index.ts +12 -3
- package/src/components/nav/types.d.ts +1 -0
- package/src/components/navbar/index.ts +3 -0
- package/src/components/navbar/types.d.ts +1 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1977,6 +1977,7 @@ declare module 'gd-bs/components/nav/types' {
|
|
|
1977
1977
|
isVertical?: boolean;
|
|
1978
1978
|
onClick?: (newTab?: INavLink, prevTab?: INavLink) => void;
|
|
1979
1979
|
onLinkRendered?: (el?: HTMLElement, item?: INavLinkProps) => void;
|
|
1980
|
+
onRendered?: (el?: HTMLElement) => void;
|
|
1980
1981
|
onTabRendered?: (el?: HTMLElement, item?: INavLinkProps) => void;
|
|
1981
1982
|
}
|
|
1982
1983
|
|
|
@@ -2122,6 +2123,7 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2122
2123
|
itemsEnd?: Array<INavbarItem>;
|
|
2123
2124
|
onClick?: (item?: INavbarItem, ev?: Event) => void;
|
|
2124
2125
|
onItemRendered?: (el?: HTMLElement, item?: INavbarItem) => void;
|
|
2126
|
+
onRendered?: (el?: HTMLElement) => void;
|
|
2125
2127
|
searchBox?: INavbarSearchBox;
|
|
2126
2128
|
type?: number;
|
|
2127
2129
|
}
|