From ec25617087ecae379a5fae5484a1515dc65a66a7 Mon Sep 17 00:00:00 2001 From: Gery Hirschfeld Date: Tue, 30 Apr 2024 09:26:46 +0200 Subject: [PATCH] improve docs --- packages/core/src/components.d.ts | 8 ++++---- packages/core/src/components/bal-date/bal-date.tsx | 2 +- packages/core/src/components/bal-select/bal-select.tsx | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/core/src/components.d.ts b/packages/core/src/components.d.ts index 76a731a177..88e92a311f 100644 --- a/packages/core/src/components.d.ts +++ b/packages/core/src/components.d.ts @@ -722,7 +722,7 @@ export namespace Components { */ "disabled": boolean; /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a picker */ "freeSolo": boolean; /** @@ -2723,7 +2723,7 @@ export namespace Components { */ "filter": BalProps.BalSelectFilter; /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a popup */ "freeSolo": boolean; /** @@ -5761,7 +5761,7 @@ declare namespace LocalJSX { */ "disabled"?: boolean; /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a picker */ "freeSolo"?: boolean; /** @@ -7747,7 +7747,7 @@ declare namespace LocalJSX { */ "filter"?: BalProps.BalSelectFilter; /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a popup */ "freeSolo"?: boolean; /** diff --git a/packages/core/src/components/bal-date/bal-date.tsx b/packages/core/src/components/bal-date/bal-date.tsx index aedf5f2ae3..195f9954f4 100644 --- a/packages/core/src/components/bal-date/bal-date.tsx +++ b/packages/core/src/components/bal-date/bal-date.tsx @@ -82,7 +82,7 @@ export class Date implements ComponentInterface, Loggable, BalAriaFormLinking { @Prop() readonly = false /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a picker */ @Prop() freeSolo = false diff --git a/packages/core/src/components/bal-select/bal-select.tsx b/packages/core/src/components/bal-select/bal-select.tsx index 803fe208eb..65c044e5cf 100644 --- a/packages/core/src/components/bal-select/bal-select.tsx +++ b/packages/core/src/components/bal-select/bal-select.tsx @@ -111,7 +111,7 @@ export class Select implements ComponentInterface, Loggable, BalAriaFormLinking @Prop() balTabindex = 0 /** - * If `true` there will be on trigger icon visible + * If `true` there will be no trigger icon visible, so no UX indicator for a popup */ @Prop() freeSolo = false