@@ -14,6 +14,7 @@ import { FooterLink } from "@baloise/web-app-utils";
1414import { BalListItemAccordionBodyAria } from "./components/bal-list/bal-list-item-accordion-body/bal-list-item-accordion-body" ;
1515import { BalListItemAccordionHeadAria } from "./components/bal-list/bal-list-item-accordion-head/bal-list-item-accordion-head" ;
1616import { OverlayEventDetail } from "./components/bal-modal/bal-modal.type" ;
17+ import { FormInput } from "./utils/form-input" ;
1718import { PopoverPresentOptions } from "./components/bal-popover/bal-popover" ;
1819import { BalRadioOption } from "./components/bal-radio/bal-radio.type" ;
1920import { SegmentValue } from "./components/bal-segment/bal-segment.types" ;
@@ -28,6 +29,7 @@ export { FooterLink } from "@baloise/web-app-utils";
2829export { BalListItemAccordionBodyAria } from "./components/bal-list/bal-list-item-accordion-body/bal-list-item-accordion-body" ;
2930export { BalListItemAccordionHeadAria } from "./components/bal-list/bal-list-item-accordion-head/bal-list-item-accordion-head" ;
3031export { OverlayEventDetail } from "./components/bal-modal/bal-modal.type" ;
32+ export { FormInput } from "./utils/form-input" ;
3133export { PopoverPresentOptions } from "./components/bal-popover/bal-popover" ;
3234export { BalRadioOption } from "./components/bal-radio/bal-radio.type" ;
3335export { SegmentValue } from "./components/bal-segment/bal-segment.types" ;
@@ -171,7 +173,7 @@ export namespace Components {
171173 /**
172174 * Defines the nature of the accordion trigger.
173175 */
174- "variant" : BalProps . BalAccordionTriggerVariant ;
176+ "variant" ? : BalProps . BalAccordionTriggerVariant ;
175177 }
176178 interface BalApp {
177179 /**
@@ -231,7 +233,7 @@ export namespace Components {
231233 * If `true` the button is a popup.
232234 * @default undefined
233235 */
234- "balPopup" : any ;
236+ "balPopup" : undefined ;
235237 /**
236238 * The color to use from your application's color palette.
237239 * @default 'primary'
@@ -797,7 +799,7 @@ export namespace Components {
797799 /**
798800 * Find the options properties by its value
799801 */
800- "getOptionByValue" : ( value : string ) => Promise < BalCheckboxOption > ;
802+ "getOptionByValue" : ( value : string ) => Promise < BalCheckboxOption | undefined > ;
801803 /**
802804 * Defines the layout of the checkbox button
803805 * @default undefined
@@ -2904,7 +2906,7 @@ export namespace Components {
29042906 /**
29052907 * Updates options
29062908 */
2907- "updateSelected" : ( values ? : string [ ] ) => Promise < void > ;
2909+ "updateSelected" : ( values : string [ ] ) => Promise < void > ;
29082910 }
29092911 interface BalPagination {
29102912 /**
@@ -3314,7 +3316,7 @@ export namespace Components {
33143316 /**
33153317 * Find the options properties by its value
33163318 */
3317- "getOptionByValue" : ( value : string ) => Promise < BalRadioOption > ;
3319+ "getOptionByValue" : ( value : string ) => Promise < BalRadioOption | undefined > ;
33183320 /**
33193321 * Defines the layout of the radio button
33203322 * @default undefined
@@ -3501,7 +3503,7 @@ export namespace Components {
35013503 /**
35023504 * Returns the value of the component
35033505 */
3504- "getValue" : ( ) => Promise < string [ ] > ;
3506+ "getValue" : ( ) => Promise < string [ ] | undefined > ;
35053507 /**
35063508 * If `true` the component gets a invalid style.
35073509 * @default false
@@ -3916,7 +3918,7 @@ export namespace Components {
39163918 /**
39173919 * Find the options properties by its value
39183920 */
3919- "getOptionByValue" : ( value : string ) => Promise < BalStepOption > ;
3921+ "getOptionByValue" : ( value : string ) => Promise < BalStepOption | undefined > ;
39203922 /**
39213923 * Steps can be passed as a property or through HTML markup.
39223924 * @default []
@@ -4099,7 +4101,7 @@ export namespace Components {
40994101 /**
41004102 * Find the options properties by its value
41014103 */
4102- "getOptionByValue" : ( value : string ) => Promise < BalTabOption > ;
4104+ "getOptionByValue" : ( value : string ) => Promise < BalTabOption | undefined > ;
41034105 /**
41044106 * If `true` then isTabList becomes true even if there is a link in the list.
41054107 * @default false
@@ -6255,7 +6257,7 @@ declare namespace LocalJSX {
62556257 * If `true` the button is a popup.
62566258 * @default undefined
62576259 */
6258- "balPopup" ?: any ;
6260+ "balPopup" ?: undefined ;
62596261 /**
62606262 * The color to use from your application's color palette.
62616263 * @default 'primary'
0 commit comments