gd-bs 5.5.7 → 5.5.8

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": "5.5.7",
3
+ "version": "5.5.8",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -212,7 +212,7 @@ export class FormControl implements IFormControl {
212
212
  // Add the checkbox group
213
213
  this._cb = CheckboxGroup({
214
214
  className,
215
- colSize: cbProps.colSize,
215
+ colSize: cbMultiProps.colSize,
216
216
  hideLabel: true,
217
217
  isInline: cbMultiProps.isInline,
218
218
  isReadonly: this._props.isReadonly,
@@ -258,7 +258,7 @@ export class FormControl implements IFormControl {
258
258
  // Add the checkbox group
259
259
  this._cb = CheckboxGroup({
260
260
  className,
261
- colSize: cbProps.colSize,
261
+ colSize: (this._props as IFormControlPropsMultiCheckbox).colSize,
262
262
  hideLabel: true,
263
263
  isReadonly: this._props.isReadonly,
264
264
  items: (this._props as IFormControlPropsMultiCheckbox).items,
@@ -274,7 +274,7 @@ export class FormControl implements IFormControl {
274
274
  // Add the checkbox group
275
275
  this._cb = CheckboxGroup({
276
276
  className,
277
- colSize: cbProps.colSize,
277
+ colSize: (this._props as IFormControlPropsMultiCheckbox).colSize,
278
278
  hideLabel: true,
279
279
  isReadonly: this._props.isReadonly,
280
280
  items: (this._props as IFormControlPropsMultiCheckbox).items,
@@ -304,7 +304,7 @@ export class FormControl implements IFormControl {
304
304
  // Add the checkbox group
305
305
  this._cb = CheckboxGroup({
306
306
  className,
307
- colSize: cbProps.colSize,
307
+ colSize: (this._props as IFormControlPropsCheckbox).colSize,
308
308
  hideLabel: true,
309
309
  isReadonly: this._props.isReadonly,
310
310
  items: (this._props as IFormControlPropsCheckbox).items,
@@ -350,7 +350,7 @@ export class FormControl implements IFormControl {
350
350
  // Add the checkbox group
351
351
  this._cb = CheckboxGroup({
352
352
  className,
353
- colSize: cbProps.colSize,
353
+ colSize: (this._props as IFormControlPropsCheckbox).colSize,
354
354
  hideLabel: true,
355
355
  isReadonly: this._props.isReadonly,
356
356
  items: (this._props as IFormControlPropsCheckbox).items,