gd-bs 6.6.66 → 6.6.67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.6.66",
3
+ "version": "6.6.67",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -101,7 +101,7 @@ export interface IFormControlPropsCheckbox extends IFormControlProps {
101
101
  hideLabel?: boolean;
102
102
  isInline?: boolean;
103
103
  items?: Array<ICheckboxGroupItem>;
104
- onChange?: (item: ICheckboxGroupItem, ev?: Event) => void;
104
+ onChange?: (selectedItem: ICheckboxGroupItem, allItems?: Array<ICheckboxGroupItem>, ev?: Event) => void;
105
105
  onControlRendering?: (control: IFormControlPropsCheckbox) => void | PromiseLike<IFormControlPropsCheckbox>;
106
106
  onGetValue?: (control: IFormControlPropsCheckbox) => any;
107
107
  onValidate?: (control: IFormControlPropsCheckbox, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
@@ -153,7 +153,7 @@ export interface IFormControlPropsMultiCheckbox extends IFormControlProps {
153
153
  hideLabel?: boolean;
154
154
  isInline?: boolean;
155
155
  items?: Array<ICheckboxGroupItem>;
156
- onChange?: (item: Array<ICheckboxGroupItem>, ev?: Event) => void;
156
+ onChange?: (selectedItems: Array<ICheckboxGroupItem>, allItems?: Array<ICheckboxGroupItem>, ev?: Event) => void;
157
157
  onControlRendering?: (control: IFormControlPropsCheckbox) => void | PromiseLike<IFormControlPropsCheckbox>;
158
158
  onGetValue?: (control: IFormControlPropsCheckbox) => any;
159
159
  onValidate?: (control: IFormControlPropsCheckbox, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;