Skip to content

Commit e391b8e

Browse files
chore(deps-dev): bump the prettier group across 1 directory with 2 updates (#1676)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lskramarov <l.s.kramarov@gmail.com>
1 parent 83f7c4b commit e391b8e

6 files changed

Lines changed: 160 additions & 174 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@
133133
"path-normalize": "^6.0.7",
134134
"postcss": "^8.5.14",
135135
"postcss-discard-comments": "^7.0.8",
136-
"prettier": "^3.8.4",
137-
"prettier-plugin-multiline-arrays": "^4.1.9",
136+
"prettier": "^3.9.4",
137+
"prettier-plugin-multiline-arrays": "^4.1.10",
138138
"prettier-plugin-organize-imports": "^4.3.0",
139139
"rimraf": "^5.0.10",
140140
"rollup": "^4.62.2",

packages/components-dev/scrollbar/template.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ <h3>Horizontal</h3>
4040
<textarea
4141
style="height: 300px; width: 400px; overflow-y: auto; resize: none"
4242
class="kbq-scrollbar dev-with-horizontal"
43-
>{{ longText }}</textarea
44-
>
43+
>{{ longText }}</textarea>
4544

4645
<h3>Buttons & Resize corner</h3>
4746
<textarea style="height: 300px; width: 400px; overflow-y: auto" class="kbq-scrollbar dev-with-buttons">{{

packages/components/app-switcher/app-switcher.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,12 @@ export class KbqAppSwitcherTrigger
610610
const rect = this.elementRef.nativeElement.getBoundingClientRect();
611611
const containerRect = this.scrollable.getElementRef().nativeElement.getBoundingClientRect();
612612

613-
if (
614-
!(
615-
rect.bottom >= containerRect.top &&
616-
rect.right >= containerRect.left &&
617-
rect.top <= containerRect.bottom &&
618-
rect.left <= containerRect.right
619-
)
620-
) {
613+
if (!(
614+
rect.bottom >= containerRect.top &&
615+
rect.right >= containerRect.left &&
616+
rect.top <= containerRect.bottom &&
617+
rect.left <= containerRect.right
618+
)) {
621619
this.hide();
622620
}
623621
};

packages/components/popover/popover.component.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -551,14 +551,12 @@ export class KbqPopoverTrigger extends KbqPopUpTrigger<KbqPopoverComponent> impl
551551
const rect = this.elementRef.nativeElement.getBoundingClientRect();
552552
const containerRect = this.scrollable.getElementRef().nativeElement.getBoundingClientRect();
553553

554-
if (
555-
!(
556-
rect.bottom >= containerRect.top &&
557-
rect.right >= containerRect.left &&
558-
rect.top <= containerRect.bottom &&
559-
rect.left <= containerRect.right
560-
)
561-
) {
554+
if (!(
555+
rect.bottom >= containerRect.top &&
556+
rect.right >= containerRect.left &&
557+
rect.top <= containerRect.bottom &&
558+
rect.left <= containerRect.right
559+
)) {
562560
this.hide();
563561
}
564562
};

packages/components/username/types.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ export enum KbqUsernameFormatKey {
3939
* Allows flexible formatting regardless of profile field names.
4040
*/
4141
export type KbqFormatKeyToProfileMapping<T = any> = {
42-
[key in Exclude<
43-
KbqUsernameFormatKey,
44-
KbqUsernameFormatKey.FirstNameFull | KbqUsernameFormatKey.MiddleNameFull | KbqUsernameFormatKey.LastNameFull
45-
>]: keyof T | undefined;
42+
[
43+
key in Exclude<
44+
KbqUsernameFormatKey,
45+
KbqUsernameFormatKey.FirstNameFull | KbqUsernameFormatKey.MiddleNameFull | KbqUsernameFormatKey.LastNameFull
46+
>
47+
]: keyof T | undefined;
4648
};
4749

4850
/**

0 commit comments

Comments
 (0)