gd-bs 6.0.7 → 6.0.9
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 +9 -1
- 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 +1 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +2 -2
- package/pnpm-lock.yaml +4 -4
- package/src/components/button/index.ts +11 -1
- package/src/components/navbar/index.ts +13 -0
- package/src/components/navbar/types.d.ts +1 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2170,6 +2170,7 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2170
2170
|
export interface INavbarSearchBox {
|
|
2171
2171
|
btnType?: number;
|
|
2172
2172
|
btnText?: string;
|
|
2173
|
+
getSearchValue?: () => string;
|
|
2173
2174
|
hideButton?: boolean;
|
|
2174
2175
|
onChange?: (value?: string, ev?: Event) => void;
|
|
2175
2176
|
onSearch?: (value?: string, ev?: Event) => void;
|