@lucca-front/ng 17.2.1 → 17.2.3-backfix

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/core-select/api/api-v3.directive.d.ts +25 -0
  2. package/core-select/api/api-v4.directive.d.ts +22 -0
  3. package/core-select/api/api.directive.d.ts +31 -0
  4. package/core-select/api/index.d.ts +5 -0
  5. package/core-select/api/public-api.d.ts +3 -0
  6. package/core-select/input/select-input.component.d.ts +3 -3
  7. package/core-select/option/option.component.d.ts +1 -0
  8. package/esm2022/core-select/api/api-v3.directive.mjs +62 -0
  9. package/esm2022/core-select/api/api-v4.directive.mjs +56 -0
  10. package/esm2022/core-select/api/api.directive.mjs +46 -0
  11. package/esm2022/core-select/api/lucca-front-ng-core-select-api.mjs +5 -0
  12. package/esm2022/core-select/api/public-api.mjs +4 -0
  13. package/esm2022/core-select/input/select-input.component.mjs +13 -12
  14. package/esm2022/core-select/option/option.component.mjs +5 -4
  15. package/esm2022/establishment/select/establishment-select.token.mjs +4 -0
  16. package/esm2022/establishment/select/input/establishment-select-input.component.mjs +13 -16
  17. package/esm2022/establishment/select/legal-unit-selector/legal-unit-selector.directive.mjs +9 -10
  18. package/esm2022/establishment/select/searcher/establishment-searcher.component.mjs +9 -10
  19. package/esm2022/establishment/select/select-all/establishment-select-all.component.mjs +9 -10
  20. package/esm2022/icon/icon.component.mjs +3 -3
  21. package/esm2022/multi-select/displayer/default-displayer.component.mjs +4 -2
  22. package/esm2022/multi-select/input/panel-ref.factory.mjs +6 -6
  23. package/esm2022/multi-select/input/select-input.component.mjs +3 -10
  24. package/esm2022/multi-select/panel/panel.component.mjs +18 -18
  25. package/esm2022/multi-select/select.model.mjs +2 -2
  26. package/esm2022/option/item/option-item.component.mjs +3 -3
  27. package/esm2022/option/item/tree-option-item.component.mjs +3 -3
  28. package/esm2022/simple-select/api/api-v3.directive.mjs +6 -62
  29. package/esm2022/simple-select/api/api-v4.directive.mjs +6 -56
  30. package/esm2022/simple-select/api/api.directive.mjs +6 -40
  31. package/esm2022/simple-select/input/panel-ref.factory.mjs +7 -7
  32. package/esm2022/simple-select/input/select-input.component.mjs +2 -9
  33. package/esm2022/simple-select/panel/option-selected.pipe.mjs +17 -0
  34. package/esm2022/simple-select/panel/panel.component.mjs +21 -20
  35. package/esm2022/simple-select/select.model.mjs +2 -2
  36. package/establishment/select/establishment-select.token.d.ts +4 -0
  37. package/establishment/select/input/establishment-select-input.component.d.ts +2 -2
  38. package/establishment/select/legal-unit-selector/legal-unit-selector.directive.d.ts +2 -2
  39. package/establishment/select/searcher/establishment-searcher.component.d.ts +2 -2
  40. package/establishment/select/select-all/establishment-select-all.component.d.ts +2 -2
  41. package/fesm2022/lucca-front-ng-core-select-api.mjs +162 -0
  42. package/fesm2022/lucca-front-ng-core-select-api.mjs.map +1 -0
  43. package/fesm2022/lucca-front-ng-core-select.mjs +16 -14
  44. package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
  45. package/fesm2022/lucca-front-ng-establishment.mjs +32 -39
  46. package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
  47. package/fesm2022/lucca-front-ng-icon.mjs +2 -2
  48. package/fesm2022/lucca-front-ng-icon.mjs.map +1 -1
  49. package/fesm2022/lucca-front-ng-multi-select.mjs +26 -31
  50. package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
  51. package/fesm2022/lucca-front-ng-option.mjs +4 -4
  52. package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
  53. package/fesm2022/lucca-front-ng-simple-select-api.mjs +13 -146
  54. package/fesm2022/lucca-front-ng-simple-select-api.mjs.map +1 -1
  55. package/fesm2022/lucca-front-ng-simple-select.mjs +40 -32
  56. package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
  57. package/multi-select/input/panel-ref.factory.d.ts +2 -2
  58. package/multi-select/panel/panel.component.d.ts +5 -5
  59. package/multi-select/select.model.d.ts +3 -12
  60. package/package.json +38 -32
  61. package/simple-select/api/api-v3.directive.d.ts +5 -25
  62. package/simple-select/api/api-v4.directive.d.ts +5 -22
  63. package/simple-select/api/api.directive.d.ts +5 -32
  64. package/simple-select/input/panel-ref.factory.d.ts +2 -2
  65. package/simple-select/panel/option-selected.pipe.d.ts +7 -0
  66. package/simple-select/panel/panel.component.d.ts +5 -5
  67. package/simple-select/select.model.d.ts +3 -12
  68. package/src/definitions/option/_option-item.scss +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucca-front/ng",
3
- "version": "17.2.1",
3
+ "version": "17.2.3-backfix",
4
4
  "description": "A library of icons made by the team @Lucca",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,8 +26,8 @@
26
26
  "@angular/common": "^17.0.2",
27
27
  "@angular/core": "^17.0.2",
28
28
  "@angular/cdk": "^17.0.0",
29
- "@lucca-front/icons": "v17.2.1",
30
- "@lucca-front/scss": "v17.2.1",
29
+ "@lucca-front/icons": "v17.2.3-backfix",
30
+ "@lucca-front/scss": "v17.2.3-backfix",
31
31
  "@types/dompurify": "^3.0.0",
32
32
  "isomorphic-dompurify": "^2.2.0",
33
33
  "rxjs": "^7.8.1"
@@ -53,6 +53,12 @@
53
53
  "esm": "./esm2022/a11y/lucca-front-ng-a11y.mjs",
54
54
  "default": "./fesm2022/lucca-front-ng-a11y.mjs"
55
55
  },
56
+ "./callout": {
57
+ "types": "./callout/index.d.ts",
58
+ "esm2022": "./esm2022/callout/lucca-front-ng-callout.mjs",
59
+ "esm": "./esm2022/callout/lucca-front-ng-callout.mjs",
60
+ "default": "./fesm2022/lucca-front-ng-callout.mjs"
61
+ },
56
62
  "./animations": {
57
63
  "types": "./animations/index.d.ts",
58
64
  "esm2022": "./esm2022/animations/lucca-front-ng-animations.mjs",
@@ -65,29 +71,17 @@
65
71
  "esm": "./esm2022/button/lucca-front-ng-button.mjs",
66
72
  "default": "./fesm2022/lucca-front-ng-button.mjs"
67
73
  },
68
- "./api": {
69
- "types": "./api/index.d.ts",
70
- "esm2022": "./esm2022/api/lucca-front-ng-api.mjs",
71
- "esm": "./esm2022/api/lucca-front-ng-api.mjs",
72
- "default": "./fesm2022/lucca-front-ng-api.mjs"
73
- },
74
74
  "./core": {
75
75
  "types": "./core/index.d.ts",
76
76
  "esm2022": "./esm2022/core/lucca-front-ng-core.mjs",
77
77
  "esm": "./esm2022/core/lucca-front-ng-core.mjs",
78
78
  "default": "./fesm2022/lucca-front-ng-core.mjs"
79
79
  },
80
- "./callout": {
81
- "types": "./callout/index.d.ts",
82
- "esm2022": "./esm2022/callout/lucca-front-ng-callout.mjs",
83
- "esm": "./esm2022/callout/lucca-front-ng-callout.mjs",
84
- "default": "./fesm2022/lucca-front-ng-callout.mjs"
85
- },
86
- "./core-select": {
87
- "types": "./core-select/index.d.ts",
88
- "esm2022": "./esm2022/core-select/lucca-front-ng-core-select.mjs",
89
- "esm": "./esm2022/core-select/lucca-front-ng-core-select.mjs",
90
- "default": "./fesm2022/lucca-front-ng-core-select.mjs"
80
+ "./api": {
81
+ "types": "./api/index.d.ts",
82
+ "esm2022": "./esm2022/api/lucca-front-ng-api.mjs",
83
+ "esm": "./esm2022/api/lucca-front-ng-api.mjs",
84
+ "default": "./fesm2022/lucca-front-ng-api.mjs"
91
85
  },
92
86
  "./date": {
93
87
  "types": "./date/index.d.ts",
@@ -95,6 +89,12 @@
95
89
  "esm": "./esm2022/date/lucca-front-ng-date.mjs",
96
90
  "default": "./fesm2022/lucca-front-ng-date.mjs"
97
91
  },
92
+ "./core-select": {
93
+ "types": "./core-select/index.d.ts",
94
+ "esm2022": "./esm2022/core-select/lucca-front-ng-core-select.mjs",
95
+ "esm": "./esm2022/core-select/lucca-front-ng-core-select.mjs",
96
+ "default": "./fesm2022/lucca-front-ng-core-select.mjs"
97
+ },
98
98
  "./department": {
99
99
  "types": "./department/index.d.ts",
100
100
  "esm2022": "./esm2022/department/lucca-front-ng-department.mjs",
@@ -155,18 +155,18 @@
155
155
  "esm": "./esm2022/input/lucca-front-ng-input.mjs",
156
156
  "default": "./fesm2022/lucca-front-ng-input.mjs"
157
157
  },
158
- "./modal": {
159
- "types": "./modal/index.d.ts",
160
- "esm2022": "./esm2022/modal/lucca-front-ng-modal.mjs",
161
- "esm": "./esm2022/modal/lucca-front-ng-modal.mjs",
162
- "default": "./fesm2022/lucca-front-ng-modal.mjs"
163
- },
164
158
  "./multi-select": {
165
159
  "types": "./multi-select/index.d.ts",
166
160
  "esm2022": "./esm2022/multi-select/lucca-front-ng-multi-select.mjs",
167
161
  "esm": "./esm2022/multi-select/lucca-front-ng-multi-select.mjs",
168
162
  "default": "./fesm2022/lucca-front-ng-multi-select.mjs"
169
163
  },
164
+ "./modal": {
165
+ "types": "./modal/index.d.ts",
166
+ "esm2022": "./esm2022/modal/lucca-front-ng-modal.mjs",
167
+ "esm": "./esm2022/modal/lucca-front-ng-modal.mjs",
168
+ "default": "./fesm2022/lucca-front-ng-modal.mjs"
169
+ },
170
170
  "./new-badge": {
171
171
  "types": "./new-badge/index.d.ts",
172
172
  "esm2022": "./esm2022/new-badge/lucca-front-ng-new-badge.mjs",
@@ -233,18 +233,18 @@
233
233
  "esm": "./esm2022/select/lucca-front-ng-select.mjs",
234
234
  "default": "./fesm2022/lucca-front-ng-select.mjs"
235
235
  },
236
- "./sidepanel": {
237
- "types": "./sidepanel/index.d.ts",
238
- "esm2022": "./esm2022/sidepanel/lucca-front-ng-sidepanel.mjs",
239
- "esm": "./esm2022/sidepanel/lucca-front-ng-sidepanel.mjs",
240
- "default": "./fesm2022/lucca-front-ng-sidepanel.mjs"
241
- },
242
236
  "./simple-select": {
243
237
  "types": "./simple-select/index.d.ts",
244
238
  "esm2022": "./esm2022/simple-select/lucca-front-ng-simple-select.mjs",
245
239
  "esm": "./esm2022/simple-select/lucca-front-ng-simple-select.mjs",
246
240
  "default": "./fesm2022/lucca-front-ng-simple-select.mjs"
247
241
  },
242
+ "./sidepanel": {
243
+ "types": "./sidepanel/index.d.ts",
244
+ "esm2022": "./esm2022/sidepanel/lucca-front-ng-sidepanel.mjs",
245
+ "esm": "./esm2022/sidepanel/lucca-front-ng-sidepanel.mjs",
246
+ "default": "./fesm2022/lucca-front-ng-sidepanel.mjs"
247
+ },
248
248
  "./title": {
249
249
  "types": "./title/index.d.ts",
250
250
  "esm2022": "./esm2022/title/lucca-front-ng-title.mjs",
@@ -269,6 +269,12 @@
269
269
  "esm": "./esm2022/user/lucca-front-ng-user.mjs",
270
270
  "default": "./fesm2022/lucca-front-ng-user.mjs"
271
271
  },
272
+ "./core-select/api": {
273
+ "types": "./core-select/api/index.d.ts",
274
+ "esm2022": "./esm2022/core-select/api/lucca-front-ng-core-select-api.mjs",
275
+ "esm": "./esm2022/core-select/api/lucca-front-ng-core-select-api.mjs",
276
+ "default": "./fesm2022/lucca-front-ng-core-select-api.mjs"
277
+ },
272
278
  "./simple-select/api": {
273
279
  "types": "./simple-select/api/index.d.ts",
274
280
  "esm2022": "./esm2022/simple-select/api/lucca-front-ng-simple-select-api.mjs",
@@ -1,25 +1,5 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { ILuApiItem } from '@lucca-front/ng/api';
3
- import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
4
- import { ALuSimpleSelectApiDirective } from './api.directive';
5
- import * as i0 from "@angular/core";
6
- export declare class LuSimpleSelectApiV3Directive<T extends ILuApiItem> extends ALuSimpleSelectApiDirective<T> {
7
- set apiV3(value: string);
8
- set fields(value: string);
9
- set orderBy(value: string | null);
10
- set filters(value: Record<string, string | number | boolean>);
11
- protected url$: ReplaySubject<string>;
12
- protected fields$: BehaviorSubject<string>;
13
- protected orderBy$: BehaviorSubject<string>;
14
- protected filters$: BehaviorSubject<Record<string, string | number | boolean>>;
15
- protected httpClient: HttpClient;
16
- protected params$: Observable<{
17
- name?: string;
18
- orderBy?: string;
19
- fields: string;
20
- }>;
21
- protected getOptions(params: Record<string, string | number | boolean>, page: number): Observable<T[]>;
22
- protected optionComparer: (a: T, b: T) => boolean;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<LuSimpleSelectApiV3Directive<any>, never>;
24
- static ɵdir: i0.ɵɵDirectiveDeclaration<LuSimpleSelectApiV3Directive<any>, "lu-simple-select[apiV3],lu-multi-select[apiV3]", never, { "apiV3": { "alias": "apiV3"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; }, {}, never, never, true, never>;
25
- }
1
+ import { LuCoreSelectApiV3Directive } from '@lucca-front/ng/core-select/api';
2
+ /**
3
+ * @deprecated use LuCoreSelectApiV3Directive from @lucca-front/ng/core-select/api instead
4
+ */
5
+ export declare const LuSimpleSelectApiV3Directive: typeof LuCoreSelectApiV3Directive;
@@ -1,22 +1,5 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { ILuApiItem } from '@lucca-front/ng/api';
3
- import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
4
- import { ALuSimpleSelectApiDirective } from './api.directive';
5
- import * as i0 from "@angular/core";
6
- export declare class LuSimpleSelectApiV4Directive<T extends ILuApiItem> extends ALuSimpleSelectApiDirective<T> {
7
- set apiV4(value: string);
8
- set sort(value: string | null);
9
- set filters(value: Record<string, string | number | boolean>);
10
- protected url$: ReplaySubject<string>;
11
- protected sort$: BehaviorSubject<string>;
12
- protected filters$: BehaviorSubject<Record<string, string | number | boolean>>;
13
- protected httpClient: HttpClient;
14
- protected params$: Observable<{
15
- search?: string;
16
- sort?: string;
17
- }>;
18
- protected getOptions(params: Record<string, string | number | boolean>, page: number): Observable<T[]>;
19
- protected optionComparer: (a: T, b: T) => boolean;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<LuSimpleSelectApiV4Directive<any>, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<LuSimpleSelectApiV4Directive<any>, "lu-simple-select[apiV4],lu-multi-select[apiV4]", never, { "apiV4": { "alias": "apiV4"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; }, {}, never, never, true, never>;
22
- }
1
+ import { LuCoreSelectApiV4Directive } from '@lucca-front/ng/core-select/api';
2
+ /**
3
+ * @deprecated use LuCoreSelectApiV4Directive from @lucca-front/ng/core-select/api instead
4
+ */
5
+ export declare const LuSimpleSelectApiV4Directive: typeof LuCoreSelectApiV4Directive;
@@ -1,32 +1,5 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { ALuSelectInputComponent } from '@lucca-front/ng/core-select';
3
- import { BehaviorSubject, Observable, Subject } from 'rxjs';
4
- import * as i0 from "@angular/core";
5
- export declare const MAGIC_PAGE_SIZE = 20;
6
- export declare const MAGIC_DEBOUNCE_DURATION = 250;
7
- export declare abstract class ALuSimpleSelectApiDirective<TOption, TParams = Record<string, string | number | boolean>> implements OnDestroy, OnInit {
8
- protected destroy$: Subject<void>;
9
- protected pageSize: number;
10
- protected debounceDuration: number;
11
- protected select: ALuSelectInputComponent<TOption, unknown>;
12
- protected page$: Observable<number>;
13
- protected clue$: Observable<string>;
14
- /**
15
- * Create an object that will be used as params for the api call
16
- */
17
- protected abstract params$: Observable<TParams>;
18
- /**
19
- * Compare two options to know if they are the same. For example, compare by id or by JSON
20
- */
21
- protected abstract optionComparer: (a: TOption, b: TOption) => boolean;
22
- /**
23
- * Return the options for the given params and page
24
- */
25
- protected abstract getOptions(params: TParams, page: number): Observable<TOption[]>;
26
- protected loading$: BehaviorSubject<boolean>;
27
- ngOnInit(): void;
28
- protected buildOptions(): Observable<TOption[]>;
29
- ngOnDestroy(): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<ALuSimpleSelectApiDirective<any, any>, never>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSimpleSelectApiDirective<any, any>, never, never, {}, {}, never, never, false, never>;
32
- }
1
+ import { ALuCoreSelectApiDirective } from '@lucca-front/ng/core-select/api';
2
+ /**
3
+ * @deprecated use ALuCoreSelectApiDirective from @lucca-front/ng/core-select/api instead
4
+ */
5
+ export declare const ALuSimpleSelectApiDirective: typeof ALuCoreSelectApiDirective;
@@ -1,7 +1,7 @@
1
1
  import { Overlay, OverlayConfig, OverlayPositionBuilder, ScrollStrategyOptions } from '@angular/cdk/overlay';
2
2
  import { ElementRef, Injector } from '@angular/core';
3
3
  import { LuSelectPanelRef } from '@lucca-front/ng/core-select';
4
- import { ILuSimpleSelectPanelData } from '../select.model';
4
+ import { LuSimpleSelectInputComponent } from './select-input.component';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class LuSimpleSelectPanelRefFactory {
7
7
  protected overlay: Overlay;
@@ -9,7 +9,7 @@ export declare class LuSimpleSelectPanelRefFactory {
9
9
  protected positionBuilder: OverlayPositionBuilder;
10
10
  protected scrollStrategies: ScrollStrategyOptions;
11
11
  protected parentInjector: Injector;
12
- buildPanelRef<T>(panelData: ILuSimpleSelectPanelData<T>, overlayConfigOverride?: OverlayConfig): LuSelectPanelRef<T, T>;
12
+ buildPanelRef<T>(selectInput: LuSimpleSelectInputComponent<T>, overlayConfigOverride?: OverlayConfig): LuSelectPanelRef<T, T>;
13
13
  protected buildOverlayConfig(overlayConfigOverride?: OverlayConfig): OverlayConfig;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<LuSimpleSelectPanelRefFactory, never>;
15
15
  static ɵprov: i0.ɵɵInjectableDeclaration<LuSimpleSelectPanelRefFactory>;
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LuIsOptionSelectedPipe implements PipeTransform {
4
+ transform<T>(option: T, comparer: (option1: T, option2: T) => boolean, selectedOption: T): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LuIsOptionSelectedPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<LuIsOptionSelectedPipe, "luIsOptionSelected", true>;
7
+ }
@@ -1,18 +1,18 @@
1
1
  import { ActiveDescendantKeyManager } from '@angular/cdk/a11y';
2
2
  import { AfterViewInit, QueryList } from '@angular/core';
3
3
  import { LuSelectPanelRef, ɵLuOptionComponent } from '@lucca-front/ng/core-select';
4
- import { ILuSimpleSelectPanelData } from '../select.model';
4
+ import { LuSimpleSelectInputComponent } from '../input/select-input.component';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class LuSelectPanelComponent<T> implements AfterViewInit {
7
- protected panelData: ILuSimpleSelectPanelData<T>;
7
+ selectInput: LuSimpleSelectInputComponent<T>;
8
8
  panelRef: LuSelectPanelRef<T, T>;
9
9
  selectId: number;
10
10
  intl: import("../select.translate").ILuSimpleSelectLabel;
11
- options$: import("rxjs").Observable<T[]>;
11
+ options$: import("rxjs").ReplaySubject<T[]>;
12
+ grouping: import("@lucca-front/ng/core-select").LuOptionGroupDirective<T, T, unknown>;
12
13
  groups$: import("rxjs").Observable<import("@lucca-front/ng/core-select").LuOptionGroup<T, unknown>[]>;
13
- loading$: import("rxjs").Observable<boolean>;
14
+ loading$: import("rxjs").BehaviorSubject<boolean>;
14
15
  optionComparer: (option1: T, option2: T) => boolean;
15
- grouping: import("@lucca-front/ng/core-select").LuOptionGroupDirective<T, T, unknown>;
16
16
  initialValue: T | undefined;
17
17
  optionTpl: import("@angular/core").Type<unknown> | import("@angular/core").TemplateRef<import("@lucca-front/ng/core-select").LuOptionContext<T>>;
18
18
  optionsQL: QueryList<ɵLuOptionComponent<T>>;
@@ -1,12 +1,3 @@
1
- import { InjectionToken, TemplateRef, Type } from '@angular/core';
2
- import { LuOptionContext, LuOptionGroupDirective } from '@lucca-front/ng/core-select';
3
- import { Observable } from 'rxjs';
4
- export interface ILuSimpleSelectPanelData<T> {
5
- options$: Observable<T[]>;
6
- loading$: Observable<boolean>;
7
- optionComparer: (option1: T, option2: T) => boolean;
8
- initialValue: T | undefined;
9
- optionTpl: TemplateRef<LuOptionContext<T>> | Type<unknown>;
10
- grouping?: LuOptionGroupDirective<T, T, unknown>;
11
- }
12
- export declare const SIMPLE_SELECT_PANEL_DATA: InjectionToken<ILuSimpleSelectPanelData<unknown>>;
1
+ import { InjectionToken } from '@angular/core';
2
+ import type { LuSimpleSelectInputComponent } from './input';
3
+ export declare const SIMPLE_SELECT_INPUT: InjectionToken<LuSimpleSelectInputComponent<unknown>>;
@@ -18,6 +18,7 @@
18
18
  @mixin optionItemStyle {
19
19
  :host {
20
20
  display: block;
21
+ scroll-margin: var(--spacings-XXS);
21
22
  }
22
23
 
23
24
  .optionItem {