gd-bs 6.0.8 → 6.1.0
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/navbar/index.js +11 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/navbar/index.ts +13 -0
- package/src/components/navbar/types.d.ts +3 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2103,6 +2103,9 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2103
2103
|
/** The element. */
|
|
2104
2104
|
el: HTMLBaseElement;
|
|
2105
2105
|
|
|
2106
|
+
/** Method to get the search box value. */
|
|
2107
|
+
getSearchValue?: () => string;
|
|
2108
|
+
|
|
2106
2109
|
/** Hides the nav bar. */
|
|
2107
2110
|
hide: () => void;
|
|
2108
2111
|
|