Skip to content

Commit

Permalink
🐛 fix(devkit): style migration is missing is-display-flex (#1393)
Browse files Browse the repository at this point in the history
* 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 <gerhard.hirschfeld@baloise.ch>
  • Loading branch information
github-actions[bot] and hirsch88 committed May 16, 2024
1 parent 6619ba9 commit af5f93d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
/**
Expand Down Expand Up @@ -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;
/**
Expand Down Expand Up @@ -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;
/**
Expand Down Expand Up @@ -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;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/bal-date/bal-date.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/bal-select/bal-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit af5f93d

Please sign in to comment.