gd-bs 6.6.30 → 6.6.32
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 +9 -0
- package/build/components/table/index.js +3 -3
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/index.html +10 -8
- package/package.json +1 -1
- package/src/components/navbar/index.ts +10 -0
- package/src/components/navbar/types.d.ts +1 -0
- package/src/components/table/index.ts +3 -3
- package/src/components/table/types.d.ts +1 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2212,6 +2212,7 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2212
2212
|
items?: Array<INavbarItem>;
|
|
2213
2213
|
itemsEnd?: Array<INavbarItem>;
|
|
2214
2214
|
onClick?: (item?: INavbarItem, ev?: Event) => void;
|
|
2215
|
+
onClickBrand?: (el?: HTMLElement, ev?: Event) => void;
|
|
2215
2216
|
onItemRendered?: (el?: HTMLElement, item?: INavbarItem) => void;
|
|
2216
2217
|
onRendered?: (el?: HTMLElement) => void;
|
|
2217
2218
|
searchBox?: INavbarSearchBox;
|
|
@@ -2815,7 +2816,7 @@ declare module 'gd-bs/components/table/types' {
|
|
|
2815
2816
|
onRenderCell?: (el?: HTMLTableDataCellElement, column?: ITableColumn, data?: any) => void;
|
|
2816
2817
|
onRenderHeaderCell?: (el?: HTMLTableDataCellElement, column?: ITableColumn) => void;
|
|
2817
2818
|
onRenderHeaderRow?: (el?: HTMLTableRowElement) => void;
|
|
2818
|
-
onRenderRow?: (el?: HTMLTableRowElement, data?: any) => void;
|
|
2819
|
+
onRenderRow?: (el?: HTMLTableRowElement, data?: any, rowIdx?: number) => void;
|
|
2819
2820
|
rows?: Array<any>;
|
|
2820
2821
|
}
|
|
2821
2822
|
|