gd-bs 6.9.18 → 6.9.19

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
@@ -1180,6 +1180,7 @@ declare module 'gd-bs/components/form/controlTypes' {
1180
1180
  label?: HTMLElement;
1181
1181
  props: IFormControlProps;
1182
1182
  textbox: IInputGroup;
1183
+ setDescription: (value: string) => void;
1183
1184
  setLabel: (value: string) => void;
1184
1185
  setControl: (control: any) => void;
1185
1186
  setValue: (value: any) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.9.18",
3
+ "version": "6.9.19",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -14,7 +14,6 @@
14
14
  "clean": "node ./clean.js",
15
15
  "docs": "typedoc",
16
16
  "generate-icons": "node ./generateIcons",
17
- "package": "npm run all && npm run docs",
18
17
  "prod": "webpack --mode=production",
19
18
  "prod-icons": "webpack --mode=production --config webpack.icons.js",
20
19
  "typings": "dts-bundle --configJson dts-bundle.json"
@@ -59,6 +59,7 @@ export interface IFormControl {
59
59
  label?: HTMLElement;
60
60
  props: IFormControlProps;
61
61
  textbox: IInputGroup;
62
+ setDescription: (value: string) => void;
62
63
  setLabel: (value: string) => void;
63
64
  setControl: (control: any) => void;
64
65
  setValue: (value: any) => void;