File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 "> {{
Original file line number Diff line number Diff 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 } ;
Original file line number Diff line number Diff 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 } ;
Original file line number Diff line number Diff line change @@ -39,10 +39,12 @@ export enum KbqUsernameFormatKey {
3939 * Allows flexible formatting regardless of profile field names.
4040 */
4141export 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/**
You can’t perform that action at this time.
0 commit comments