gd-bs 5.5.4 → 5.5.7

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/dist/gd-bs.d.ts CHANGED
@@ -1178,6 +1178,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1178
1178
  * Form Control Properties - Checkbox
1179
1179
  */
1180
1180
  export interface IFormControlPropsCheckbox extends IFormControlProps {
1181
+ colSize?: number;
1181
1182
  el?: HTMLInputElement;
1182
1183
  hideLabel?: boolean;
1183
1184
  isInline?: boolean;
@@ -1216,6 +1217,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1216
1217
  * Form Control Properties - Multiple Checkbox
1217
1218
  */
1218
1219
  export interface IFormControlPropsMultiCheckbox extends IFormControlProps {
1220
+ colSize?: number;
1219
1221
  el?: HTMLInputElement;
1220
1222
  hideLabel?: boolean;
1221
1223
  isInline?: boolean;
@@ -1977,6 +1979,7 @@ declare module 'gd-bs/components/nav/types' {
1977
1979
  isVertical?: boolean;
1978
1980
  onClick?: (newTab?: INavLink, prevTab?: INavLink) => void;
1979
1981
  onLinkRendered?: (el?: HTMLElement, item?: INavLinkProps) => void;
1982
+ onRendered?: (el?: HTMLElement) => void;
1980
1983
  onTabRendered?: (el?: HTMLElement, item?: INavLinkProps) => void;
1981
1984
  }
1982
1985
 
@@ -2122,6 +2125,7 @@ declare module 'gd-bs/components/navbar/types' {
2122
2125
  itemsEnd?: Array<INavbarItem>;
2123
2126
  onClick?: (item?: INavbarItem, ev?: Event) => void;
2124
2127
  onItemRendered?: (el?: HTMLElement, item?: INavbarItem) => void;
2128
+ onRendered?: (el?: HTMLElement) => void;
2125
2129
  searchBox?: INavbarSearchBox;
2126
2130
  type?: number;
2127
2131
  }