gd-bs 6.1.1 → 6.1.2
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/checkboxGroup/item.js +1 -0
- package/build/components/dropdown/index.js +1 -0
- package/build/components/form/control.js +19 -0
- package/build/components/inputGroup/index.js +2 -0
- package/build/components/listBox/index.js +2 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +5 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/checkboxGroup/item.ts +1 -0
- package/src/components/checkboxGroup/types.d.ts +1 -0
- package/src/components/dropdown/index.ts +1 -0
- package/src/components/dropdown/types.d.ts +1 -0
- package/src/components/form/control.ts +19 -0
- package/src/components/inputGroup/index.ts +2 -0
- package/src/components/inputGroup/types.d.ts +1 -0
- package/src/components/listBox/index.ts +3 -0
- package/src/components/listBox/types.d.ts +2 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -884,6 +884,7 @@ declare module 'gd-bs/components/checkboxGroup/types' {
|
|
|
884
884
|
multi?: boolean;
|
|
885
885
|
onRender?: (el?: HTMLElement, item?: ICheckboxGroupItem) => void;
|
|
886
886
|
onChange?: (items: ICheckboxGroupItem | Array<ICheckboxGroupItem>, ev?: Event) => void;
|
|
887
|
+
required?: boolean;
|
|
887
888
|
title?: string;
|
|
888
889
|
type?: number;
|
|
889
890
|
value?: any;
|
|
@@ -1094,6 +1095,7 @@ declare module 'gd-bs/components/dropdown/types' {
|
|
|
1094
1095
|
navFl?: boolean;
|
|
1095
1096
|
onChange?: (item?: IDropdownItem | Array<IDropdownItem>, ev?: Event) => void;
|
|
1096
1097
|
onMenuRendering?: (props: IPopoverProps) => IPopoverProps;
|
|
1098
|
+
required?: boolean;
|
|
1097
1099
|
setLabelToValue?: boolean;
|
|
1098
1100
|
title?: string;
|
|
1099
1101
|
type?: number;
|
|
@@ -1554,6 +1556,7 @@ declare module 'gd-bs/components/inputGroup/types' {
|
|
|
1554
1556
|
placeholder?: string;
|
|
1555
1557
|
prependedButtons?: Array<IButtonProps>;
|
|
1556
1558
|
prependedLabel?: string;
|
|
1559
|
+
required?: boolean;
|
|
1557
1560
|
rows?: number;
|
|
1558
1561
|
step?: number;
|
|
1559
1562
|
title?: string;
|
|
@@ -1680,9 +1683,10 @@ declare module 'gd-bs/components/listBox/types' {
|
|
|
1680
1683
|
isReadonly?: boolean;
|
|
1681
1684
|
items: Array<IDropdownItem>;
|
|
1682
1685
|
multi?: boolean;
|
|
1683
|
-
placeholder?: string;
|
|
1684
1686
|
onLoadData?: () => Array<IDropdownItem> | PromiseLike<Array<IDropdownItem>>;
|
|
1685
1687
|
onChange?: (items: IDropdownItem | Array<IDropdownItem>, ev?: Event) => void;
|
|
1688
|
+
placeholder?: string;
|
|
1689
|
+
required?: boolean;
|
|
1686
1690
|
value?: string | Array<string>;
|
|
1687
1691
|
}
|
|
1688
1692
|
}
|