gd-bs 5.6.2 → 5.6.5
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/bs.js +1 -1
- package/build/components/checkboxGroup/item.js +2 -1
- package/build/components/form/control.js +13 -0
- package/build/components/inputGroup/index.js +4 -2
- package/dist/gd-bs-icons.js +4 -4
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -0
- package/dist/gd-bs.js +4 -4
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/bs.scss +0 -13
- package/src/components/checkboxGroup/item.ts +2 -1
- package/src/components/checkboxGroup/types.d.ts +1 -0
- package/src/components/form/control.ts +13 -0
- package/src/components/form/controlTypes.d.ts +1 -0
- package/src/components/inputGroup/index.ts +4 -2
- package/src/components/inputGroup/types.d.ts +1 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -873,6 +873,7 @@ declare module 'gd-bs/components/checkboxGroup/types' {
|
|
|
873
873
|
export interface ICheckboxGroupProps extends IBaseProps<ICheckboxGroup> {
|
|
874
874
|
colSize?: number;
|
|
875
875
|
hideLabel?: boolean;
|
|
876
|
+
isDisabled?: boolean;
|
|
876
877
|
isInline?: boolean;
|
|
877
878
|
isReadonly?: boolean;
|
|
878
879
|
label?: string;
|
|
@@ -1158,6 +1159,7 @@ declare module 'gd-bs/components/form/controlTypes' {
|
|
|
1158
1159
|
description?: string;
|
|
1159
1160
|
errorMessage?: string;
|
|
1160
1161
|
id?: string;
|
|
1162
|
+
isDisabled?: boolean;
|
|
1161
1163
|
isReadonly?: boolean;
|
|
1162
1164
|
isPlainText?: boolean;
|
|
1163
1165
|
label?: string;
|
|
@@ -1523,6 +1525,7 @@ declare module 'gd-bs/components/inputGroup/types' {
|
|
|
1523
1525
|
appendedLabel?: string;
|
|
1524
1526
|
formFl?: boolean;
|
|
1525
1527
|
id?: string;
|
|
1528
|
+
isDisabled?: boolean;
|
|
1526
1529
|
isLarge?: boolean;
|
|
1527
1530
|
isReadonly?: boolean;
|
|
1528
1531
|
isSmall?: boolean;
|