gd-bs 6.0.1 → 6.0.3

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/dist/gd-bs.d.ts CHANGED
@@ -1138,6 +1138,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1138
1138
  dropdown: IDropdown;
1139
1139
  el: HTMLElement;
1140
1140
  getValue: () => any;
1141
+ hide: () => void;
1141
1142
  isLoaded: () => PromiseLike<void>;
1142
1143
  isRendered: boolean;
1143
1144
  isValid: boolean;
@@ -1147,6 +1148,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1147
1148
  setLabel: (value: string) => void;
1148
1149
  setControl: (control: any) => void;
1149
1150
  setValue: (value: any) => void;
1151
+ show: () => void;
1150
1152
  updateValidation: (elControl: Element, validation: IFormControlValidationResult) => void;
1151
1153
  }
1152
1154