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/build/bs.js +1 -1
- package/build/components/form/control.js +6 -0
- package/build/components/nav/index.js +10 -3
- package/build/components/navbar/index.js +2 -0
- package/dist/gd-bs-icons.js +15 -4
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +4 -0
- package/dist/gd-bs.js +4 -4
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/bs.scss +4 -0
- package/src/components/form/control.ts +6 -0
- package/src/components/form/controlTypes.d.ts +2 -0
- package/src/components/nav/index.ts +12 -3
- package/src/components/nav/types.d.ts +1 -0
- package/src/components/navbar/index.ts +3 -0
- package/src/components/navbar/types.d.ts +1 -0
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
|
}
|