From af5f93de73b72feadeed7f7803e74e97f0d53c10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 May 2024 15:01:59 +0200 Subject: [PATCH] :bug: fix(devkit): style migration is missing is-display-flex (#1393) * Create PR for #1392 * improve docs --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Gery Hirschfeld --- 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 005de995a..a08dc2e8a 100644 --- a/packages/core/src/components.d.ts +++ b/packages/core/src/components.d.ts @@ -726,7 +726,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; /** @@ -2731,7 +2731,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; /** @@ -5773,7 +5773,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; /** @@ -7763,7 +7763,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 6de4d2cd2..2b2676728 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 803fe208e..65c044e5c 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