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
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1223,6 +1223,18 @@ declare module 'gd-bs/components/form/controlTypes' {
|
|
|
1223
1223
|
onValidate?: (control: IFormControlPropsDropdown, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
|
+
/**
|
|
1227
|
+
* Form Control Properties - Dropdown Button
|
|
1228
|
+
*/
|
|
1229
|
+
export interface IFormControlPropsDropdownButton extends IFormControlPropsDropdown {
|
|
1230
|
+
placeholder?: string;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* Form Control Properties - Dropdown Checkbox
|
|
1235
|
+
*/
|
|
1236
|
+
export interface IFormControlPropsDropdownCheckbox extends IFormControlPropsDropdownButton { }
|
|
1237
|
+
|
|
1226
1238
|
/**
|
|
1227
1239
|
* Form Control Properties - List Box
|
|
1228
1240
|
*/
|
|
@@ -1263,6 +1275,18 @@ declare module 'gd-bs/components/form/controlTypes' {
|
|
|
1263
1275
|
onValidate?: (control: IFormControlPropsDropdown, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
|
|
1264
1276
|
}
|
|
1265
1277
|
|
|
1278
|
+
/**
|
|
1279
|
+
* Form Control Properties - Multiple Dropdown Button
|
|
1280
|
+
*/
|
|
1281
|
+
export interface IFormControlPropsMultiDropdownButton extends IFormControlPropsMultiDropdown {
|
|
1282
|
+
placeholder?: string;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
/**
|
|
1286
|
+
* Form Control Properties - Multiple Dropdown Checkbox
|
|
1287
|
+
*/
|
|
1288
|
+
export interface IFormControlPropsMultiDropdownCheckbox extends IFormControlPropsMultiDropdownButton { }
|
|
1289
|
+
|
|
1266
1290
|
/**
|
|
1267
1291
|
* Form Control Properties - Multiple List Box
|
|
1268
1292
|
*/
|