@sap-ux/inquirer-common 0.2.3 → 0.2.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type IMessageSeverity } from '@sap-devx/yeoman-ui-types';
2
- import type { Answers, ConfirmQuestion as BaseConfirmQuestion, InputQuestion as BaseInputQuestion, ListQuestion as BaseListQuestion, ListChoiceOptions, PromptFunction, PromptModule, Question } from 'inquirer';
2
+ import type { Answers, ConfirmQuestion as BaseConfirmQuestion, InputQuestion as BaseInputQuestion, ListQuestion as BaseListQuestion, CheckboxQuestion as BaseCheckBoxQuestion, ListChoiceOptions, PromptFunction, PromptModule, Question } from 'inquirer';
3
3
  export interface UI5VersionChoice extends ListChoiceOptions {
4
4
  /**
5
5
  * UI5 semantic version
@@ -62,4 +62,8 @@ export interface InputQuestion<A extends Answers = Answers> extends BaseInputQue
62
62
  name: YUIQuestion['name'];
63
63
  guiOptions?: YUIQuestion['guiOptions'];
64
64
  }
65
+ export interface CheckBoxQuestion<A extends Answers = Answers> extends BaseCheckBoxQuestion<A> {
66
+ name: YUIQuestion['name'];
67
+ guiOptions?: YUIQuestion['guiOptions'];
68
+ }
65
69
  //# sourceMappingURL=types.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/inquirer-common",
3
3
  "description": "Commonly used shared functionality and types to support inquirer modules.",
4
- "version": "0.2.3",
4
+ "version": "0.2.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",