gd-bs 6.1.5 → 6.1.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/iconLink/index.js +84 -0
- package/build/components/iconLink/templates.js +5 -0
- package/build/components/index.js +1 -0
- package/build/components/nav/index.js +13 -12
- package/build/components/nav/link.js +4 -4
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +8 -0
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +1 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +8 -0
- package/dist/gd-bs.min.js +1 -1
- package/index.html +10 -3
- package/package.json +1 -1
- package/src/components/iconLink/index.ts +71 -0
- package/src/components/iconLink/templates.ts +2 -0
- package/src/components/iconLink/types.d.ts +68 -0
- package/src/components/index.ts +1 -0
- package/src/components/nav/index.ts +10 -9
- package/src/components/nav/link.ts +4 -4
- package/src/components/nav/types.d.ts +1 -0
- package/src/styles/_custom.scss +7 -29
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2003,6 +2003,7 @@ declare module 'gd-bs/components/nav/types' {
|
|
|
2003
2003
|
isJustified?: boolean;
|
|
2004
2004
|
isPills?: boolean;
|
|
2005
2005
|
isTabs?: boolean;
|
|
2006
|
+
isUnderline?: boolean;
|
|
2006
2007
|
isVertical?: boolean;
|
|
2007
2008
|
onClick?: (newTab?: INavLink, prevTab?: INavLink) => void;
|
|
2008
2009
|
onLinkRendered?: (el?: HTMLElement, item?: INavLinkProps) => void;
|