gd-bs 5.5.6 → 5.5.7

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.6",
3
+ "version": "5.5.7",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -110,6 +110,7 @@ export class FormControl implements IFormControl {
110
110
  // Add the checkbox group
111
111
  this._cb = CheckboxGroup({
112
112
  className,
113
+ colSize: cbProps.colSize,
113
114
  hideLabel: true,
114
115
  isInline: cbProps.isInline,
115
116
  isReadonly: this._props.isReadonly,
@@ -211,6 +212,7 @@ export class FormControl implements IFormControl {
211
212
  // Add the checkbox group
212
213
  this._cb = CheckboxGroup({
213
214
  className,
215
+ colSize: cbProps.colSize,
214
216
  hideLabel: true,
215
217
  isInline: cbMultiProps.isInline,
216
218
  isReadonly: this._props.isReadonly,
@@ -256,6 +258,7 @@ export class FormControl implements IFormControl {
256
258
  // Add the checkbox group
257
259
  this._cb = CheckboxGroup({
258
260
  className,
261
+ colSize: cbProps.colSize,
259
262
  hideLabel: true,
260
263
  isReadonly: this._props.isReadonly,
261
264
  items: (this._props as IFormControlPropsMultiCheckbox).items,
@@ -271,6 +274,7 @@ export class FormControl implements IFormControl {
271
274
  // Add the checkbox group
272
275
  this._cb = CheckboxGroup({
273
276
  className,
277
+ colSize: cbProps.colSize,
274
278
  hideLabel: true,
275
279
  isReadonly: this._props.isReadonly,
276
280
  items: (this._props as IFormControlPropsMultiCheckbox).items,
@@ -300,6 +304,7 @@ export class FormControl implements IFormControl {
300
304
  // Add the checkbox group
301
305
  this._cb = CheckboxGroup({
302
306
  className,
307
+ colSize: cbProps.colSize,
303
308
  hideLabel: true,
304
309
  isReadonly: this._props.isReadonly,
305
310
  items: (this._props as IFormControlPropsCheckbox).items,
@@ -345,6 +350,7 @@ export class FormControl implements IFormControl {
345
350
  // Add the checkbox group
346
351
  this._cb = CheckboxGroup({
347
352
  className,
353
+ colSize: cbProps.colSize,
348
354
  hideLabel: true,
349
355
  isReadonly: this._props.isReadonly,
350
356
  items: (this._props as IFormControlPropsCheckbox).items,
@@ -93,6 +93,7 @@ export interface IFormControlProps extends IBaseProps<IFormControl> {
93
93
  * Form Control Properties - Checkbox
94
94
  */
95
95
  export interface IFormControlPropsCheckbox extends IFormControlProps {
96
+ colSize?: number;
96
97
  el?: HTMLInputElement;
97
98
  hideLabel?: boolean;
98
99
  isInline?: boolean;
@@ -131,6 +132,7 @@ export interface IFormControlPropsListBox extends IFormControlProps {
131
132
  * Form Control Properties - Multiple Checkbox
132
133
  */
133
134
  export interface IFormControlPropsMultiCheckbox extends IFormControlProps {
135
+ colSize?: number;
134
136
  el?: HTMLInputElement;
135
137
  hideLabel?: boolean;
136
138
  isInline?: boolean;