gd-bs 6.0.9 → 6.1.1
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/checkboxGroup/index.js +1 -1
- package/build/components/checkboxGroup/item.js +7 -3
- package/build/components/form/control.js +0 -6
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -3
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/index.html +46 -8
- package/package.json +1 -1
- package/src/components/checkboxGroup/index.ts +1 -1
- package/src/components/checkboxGroup/item.ts +8 -3
- package/src/components/checkboxGroup/types.d.ts +0 -1
- package/src/components/form/control.ts +0 -6
- package/src/components/form/controlTypes.d.ts +0 -1
- package/src/components/navbar/types.d.ts +3 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -884,7 +884,6 @@ declare module 'gd-bs/components/checkboxGroup/types' {
|
|
|
884
884
|
multi?: boolean;
|
|
885
885
|
onRender?: (el?: HTMLElement, item?: ICheckboxGroupItem) => void;
|
|
886
886
|
onChange?: (items: ICheckboxGroupItem | Array<ICheckboxGroupItem>, ev?: Event) => void;
|
|
887
|
-
renderRow?: boolean;
|
|
888
887
|
title?: string;
|
|
889
888
|
type?: number;
|
|
890
889
|
value?: any;
|
|
@@ -1194,7 +1193,6 @@ declare module 'gd-bs/components/form/controlTypes' {
|
|
|
1194
1193
|
onControlRendering?: (control: IFormControlPropsCheckbox) => void | PromiseLike<IFormControlPropsCheckbox>;
|
|
1195
1194
|
onGetValue?: (control: IFormControlPropsCheckbox) => any;
|
|
1196
1195
|
onValidate?: (control: IFormControlPropsCheckbox, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
|
|
1197
|
-
renderRow?: boolean;
|
|
1198
1196
|
}
|
|
1199
1197
|
|
|
1200
1198
|
/**
|
|
@@ -2103,6 +2101,9 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2103
2101
|
/** The element. */
|
|
2104
2102
|
el: HTMLBaseElement;
|
|
2105
2103
|
|
|
2104
|
+
/** Method to get the search box value. */
|
|
2105
|
+
getSearchValue?: () => string;
|
|
2106
|
+
|
|
2106
2107
|
/** Hides the nav bar. */
|
|
2107
2108
|
hide: () => void;
|
|
2108
2109
|
|
|
@@ -2170,7 +2171,6 @@ declare module 'gd-bs/components/navbar/types' {
|
|
|
2170
2171
|
export interface INavbarSearchBox {
|
|
2171
2172
|
btnType?: number;
|
|
2172
2173
|
btnText?: string;
|
|
2173
|
-
getSearchValue?: () => string;
|
|
2174
2174
|
hideButton?: boolean;
|
|
2175
2175
|
onChange?: (value?: string, ev?: Event) => void;
|
|
2176
2176
|
onSearch?: (value?: string, ev?: Event) => void;
|