gd-bs 6.6.64 → 6.6.65

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.64",
3
+ "version": "6.6.65",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -383,6 +383,7 @@ export class FormControl implements IFormControl {
383
383
  colSize: (this._props as IFormControlPropsMultiCheckbox).colSize,
384
384
  hideLabel: true,
385
385
  isDisabled: this._props.isDisabled,
386
+ isInline: (this._props as IFormControlPropsCheckbox).isInline,
386
387
  isReadonly: this._props.isReadonly,
387
388
  items: (this._props as IFormControlPropsMultiCheckbox).items,
388
389
  multi: true,
@@ -419,6 +420,7 @@ export class FormControl implements IFormControl {
419
420
  colSize: (this._props as IFormControlPropsCheckbox).colSize,
420
421
  hideLabel: true,
421
422
  isDisabled: this._props.isDisabled,
423
+ isInline: (this._props as IFormControlPropsCheckbox).isInline,
422
424
  isReadonly: this._props.isReadonly,
423
425
  items: (this._props as IFormControlPropsCheckbox).items,
424
426
  onChange: (this._props as IFormControlPropsCheckbox).onChange,
@@ -473,6 +475,7 @@ export class FormControl implements IFormControl {
473
475
  colSize: (this._props as IFormControlPropsCheckbox).colSize,
474
476
  hideLabel: true,
475
477
  isDisabled: this._props.isDisabled,
478
+ isInline: (this._props as IFormControlPropsCheckbox).isInline,
476
479
  isReadonly: this._props.isReadonly,
477
480
  items: (this._props as IFormControlPropsCheckbox).items,
478
481
  onChange: (this._props as IFormControlPropsCheckbox).onChange,