gd-bs 6.6.3 → 6.6.4
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/form/control.js +4 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +24 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/form/control.ts +24 -17
- package/src/components/form/controlTypes.d.ts +24 -0
|
@@ -179,6 +179,7 @@ var FormControl = /** @class */ (function () {
|
|
|
179
179
|
id: this._props.id,
|
|
180
180
|
isReadonly: this._props.isReadonly,
|
|
181
181
|
items: this._props.items,
|
|
182
|
+
label: this.props.placeholder,
|
|
182
183
|
onChange: this._props.onChange,
|
|
183
184
|
onMenuRendering: this._props.onMenuRendering,
|
|
184
185
|
required: this._props.required,
|
|
@@ -196,6 +197,7 @@ var FormControl = /** @class */ (function () {
|
|
|
196
197
|
isCheckbox: true,
|
|
197
198
|
isReadonly: this._props.isReadonly,
|
|
198
199
|
items: this._props.items,
|
|
200
|
+
label: this.props.placeholder,
|
|
199
201
|
onChange: this._props.onChange,
|
|
200
202
|
onMenuRendering: this._props.onMenuRendering,
|
|
201
203
|
required: this._props.required,
|
|
@@ -298,6 +300,7 @@ var FormControl = /** @class */ (function () {
|
|
|
298
300
|
id: this._props.id,
|
|
299
301
|
isReadonly: this._props.isReadonly,
|
|
300
302
|
items: this._props.items,
|
|
303
|
+
label: this._props.placeholder,
|
|
301
304
|
multi: true,
|
|
302
305
|
onChange: this._props.onChange,
|
|
303
306
|
onMenuRendering: this._props.onMenuRendering,
|
|
@@ -316,6 +319,7 @@ var FormControl = /** @class */ (function () {
|
|
|
316
319
|
isCheckbox: true,
|
|
317
320
|
isReadonly: this._props.isReadonly,
|
|
318
321
|
items: this._props.items,
|
|
322
|
+
label: this._props.placeholder,
|
|
319
323
|
multi: true,
|
|
320
324
|
onChange: this._props.onChange,
|
|
321
325
|
onMenuRendering: this._props.onMenuRendering,
|