gd-bs 6.1.0 → 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 +0 -2
- 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/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
|
/**
|