@lucca-front/ng 17.1.2 → 17.2.0-rc.1
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.
- package/a11y/skip-links/skip-links.component.d.ts +1 -2
- package/callout/callout-disclosure/callout-disclosure.component.d.ts +6 -1
- package/core/tools/ng-clazz.directive.d.ts +2 -0
- package/core-select/input/select-input.component.d.ts +18 -8
- package/core-select/option/group.directive.d.ts +12 -0
- package/core-select/option/index.d.ts +1 -0
- package/core-select/option/option-outlet.directive.d.ts +2 -1
- package/core-select/option/option.directive.d.ts +2 -2
- package/core-select/panel/index.d.ts +1 -0
- package/core-select/panel/panel.models.d.ts +2 -0
- package/core-select/panel/panel.utils.d.ts +5 -0
- package/core-select/select.model.d.ts +7 -0
- package/empty-state/empty-state-page/empty-state-page.component.d.ts +28 -0
- package/empty-state/empty-state-section/empty-state-section.component.d.ts +15 -0
- package/empty-state/index.d.ts +5 -0
- package/empty-state/public-api.d.ts +2 -0
- package/esm2022/a11y/skip-links/skip-links.component.mjs +9 -11
- package/esm2022/api/select/input/api-select-input.component.mjs +3 -3
- package/esm2022/api/select/searcher/api-searcher.component.mjs +5 -5
- package/esm2022/button/button.component.mjs +2 -2
- package/esm2022/callout/callout/callout.component.mjs +4 -4
- package/esm2022/callout/callout-disclosure/callout-disclosure.component.mjs +17 -5
- package/esm2022/callout/callout-popover/callout-popover.component.mjs +4 -3
- package/esm2022/core/tools/ng-clazz.directive.mjs +7 -2
- package/esm2022/core-select/input/select-input.component.mjs +93 -50
- package/esm2022/core-select/option/group.directive.mjs +26 -0
- package/esm2022/core-select/option/index.mjs +2 -1
- package/esm2022/core-select/option/option-outlet.directive.mjs +11 -8
- package/esm2022/core-select/option/option.component.mjs +8 -4
- package/esm2022/core-select/option/option.directive.mjs +1 -1
- package/esm2022/core-select/panel/index.mjs +2 -1
- package/esm2022/core-select/panel/panel.models.mjs +1 -2
- package/esm2022/core-select/panel/panel.utils.mjs +27 -0
- package/esm2022/core-select/select.model.mjs +1 -1
- package/esm2022/date/calendar/calendar-input.component.mjs +3 -3
- package/esm2022/date/select/date-select-input.component.mjs +3 -3
- package/esm2022/department/select/input/department-select-input.component.mjs +3 -3
- package/esm2022/empty-state/empty-state-page/empty-state-page.component.mjs +57 -0
- package/esm2022/empty-state/empty-state-section/empty-state-section.component.mjs +41 -0
- package/esm2022/empty-state/lucca-front-ng-empty-state.mjs +5 -0
- package/esm2022/empty-state/public-api.mjs +3 -0
- package/esm2022/establishment/select/input/establishment-select-input.component.mjs +3 -3
- package/esm2022/establishment/select/searcher/establishment-searcher.component.mjs +3 -3
- package/esm2022/establishment/select/select-all/establishment-select-all.component.mjs +2 -2
- package/esm2022/form-field/form-field.component.mjs +60 -21
- package/esm2022/form-field/form-field.token.mjs +3 -0
- package/esm2022/form-field/input.directive.mjs +12 -8
- package/esm2022/form-field/public-api.mjs +2 -1
- package/esm2022/formly/types/user.mjs +1 -1
- package/esm2022/forms/checkbox-input/checkbox-input.component.mjs +26 -0
- package/esm2022/forms/public-api.mjs +4 -5
- package/esm2022/forms/switch-input/switch-input.component.mjs +26 -0
- package/esm2022/forms/text-input/text-input-addon.mjs +2 -0
- package/esm2022/forms/text-input/text-input.component.mjs +69 -0
- package/esm2022/forms/text-input/text-input.translate.mjs +15 -0
- package/esm2022/icon/icon.component.mjs +4 -4
- package/esm2022/inline-message/inline-message.component.mjs +5 -4
- package/esm2022/input/clearer/clearer.component.mjs +3 -3
- package/esm2022/multi-select/displayer/default-displayer.component.mjs +106 -122
- package/esm2022/multi-select/displayer/default-displayer.translate.mjs +6 -1
- package/esm2022/multi-select/displayer/displayer-input.directive.mjs +76 -0
- package/esm2022/multi-select/displayer/index.mjs +2 -1
- package/esm2022/multi-select/input/panel-ref.factory.mjs +15 -23
- package/esm2022/multi-select/input/panel.model.mjs +1 -10
- package/esm2022/multi-select/input/select-input.component.mjs +41 -29
- package/esm2022/multi-select/panel/panel.component.mjs +31 -89
- package/esm2022/multi-select/select.model.mjs +1 -1
- package/esm2022/multi-select/select.translate.mjs +6 -1
- package/esm2022/new-badge/new-badge.component.mjs +4 -4
- package/esm2022/numeric-badge/numeric-badge.component.mjs +7 -5
- package/esm2022/option/item/option-item.component.mjs +3 -3
- package/esm2022/option/item/tree-option-item.component.mjs +3 -3
- package/esm2022/option/operator/searcher/option-searcher.component.mjs +3 -3
- package/esm2022/option/operator/searcher/tree-option-searcher.component.mjs +3 -3
- package/esm2022/option/placeholder/option-placeholder.component.mjs +2 -2
- package/esm2022/option/selector/all/select-all.component.mjs +2 -2
- package/esm2022/option/selector/all/select-all.translate.mjs +2 -2
- package/esm2022/option/selector/all/tree-select-all.component.mjs +2 -2
- package/esm2022/qualification/select/input/qualification-select-input.component.mjs +3 -3
- package/esm2022/safe-content/public-api.mjs +2 -1
- package/esm2022/safe-content/safe-content.module.mjs +5 -6
- package/esm2022/safe-content/safe-external-svg.pipe.mjs +42 -0
- package/esm2022/safe-content/safe-html.pipe.mjs +4 -4
- package/esm2022/select/input/select-input.component.mjs +2 -2
- package/esm2022/simple-select/api/api.directive.mjs +1 -1
- package/esm2022/simple-select/input/panel-ref.factory.mjs +8 -1
- package/esm2022/simple-select/input/select-input.component.mjs +13 -9
- package/esm2022/simple-select/panel/panel.component.mjs +29 -42
- package/esm2022/simple-select/select.model.mjs +1 -1
- package/esm2022/simple-select/select.translate.mjs +6 -1
- package/esm2022/toast/toasts.component.mjs +5 -5
- package/esm2022/tooltip/panel/tooltip-panel.component.mjs +3 -3
- package/esm2022/user/picture/user-picture.component.mjs +2 -2
- package/esm2022/user/select/input/user-select-input.component.mjs +8 -5
- package/esm2022/user/select/searcher/user-searcher.component.mjs +3 -3
- package/esm2022/user/tile/user-tile.component.mjs +2 -2
- package/fesm2022/lucca-front-ng-a11y.mjs +8 -10
- package/fesm2022/lucca-front-ng-a11y.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-api.mjs +6 -6
- package/fesm2022/lucca-front-ng-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-button.mjs +2 -2
- package/fesm2022/lucca-front-ng-button.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-callout.mjs +19 -7
- package/fesm2022/lucca-front-ng-callout.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select.mjs +160 -60
- package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core.mjs +6 -1
- package/fesm2022/lucca-front-ng-core.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-date.mjs +4 -4
- package/fesm2022/lucca-front-ng-date.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-department.mjs +2 -2
- package/fesm2022/lucca-front-ng-department.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-empty-state.mjs +100 -0
- package/fesm2022/lucca-front-ng-empty-state.mjs.map +1 -0
- package/fesm2022/lucca-front-ng-establishment.mjs +6 -6
- package/fesm2022/lucca-front-ng-establishment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-form-field.mjs +82 -38
- package/fesm2022/lucca-front-ng-form-field.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-formly.mjs +1 -1
- package/fesm2022/lucca-front-ng-formly.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms.mjs +77 -121
- package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-icon.mjs +3 -3
- package/fesm2022/lucca-front-ng-icon.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-inline-message.mjs +4 -3
- package/fesm2022/lucca-front-ng-inline-message.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-input.mjs +2 -2
- package/fesm2022/lucca-front-ng-input.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-multi-select.mjs +264 -263
- package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-new-badge.mjs +3 -3
- package/fesm2022/lucca-front-ng-new-badge.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-numeric-badge.mjs +6 -4
- package/fesm2022/lucca-front-ng-numeric-badge.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-option.mjs +15 -15
- package/fesm2022/lucca-front-ng-option.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-qualification.mjs +2 -2
- package/fesm2022/lucca-front-ng-qualification.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-safe-content.mjs +48 -10
- package/fesm2022/lucca-front-ng-safe-content.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-select.mjs +2 -2
- package/fesm2022/lucca-front-ng-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-simple-select-api.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-simple-select.mjs +50 -47
- package/fesm2022/lucca-front-ng-simple-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-toast.mjs +4 -4
- package/fesm2022/lucca-front-ng-toast.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-tooltip.mjs +2 -2
- package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-user.mjs +12 -9
- package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
- package/form-field/form-field.component.d.ts +12 -8
- package/form-field/form-field.token.d.ts +3 -0
- package/form-field/input.directive.d.ts +5 -4
- package/form-field/public-api.d.ts +1 -0
- package/forms/checkbox-input/checkbox-input.component.d.ts +10 -0
- package/forms/public-api.d.ts +3 -4
- package/forms/switch-input/switch-input.component.d.ts +10 -0
- package/forms/{textfield/textfield-addon.d.ts → text-input/text-input-addon.d.ts} +1 -1
- package/forms/text-input/text-input.component.d.ts +32 -0
- package/forms/{textfield/textfield.translate.d.ts → text-input/text-input.translate.d.ts} +1 -0
- package/icon/icon.component.d.ts +1 -1
- package/multi-select/displayer/default-displayer.component.d.ts +11 -21
- package/multi-select/displayer/default-displayer.translate.d.ts +1 -0
- package/multi-select/displayer/displayer-input.directive.d.ts +18 -0
- package/multi-select/displayer/index.d.ts +1 -0
- package/multi-select/input/panel-ref.factory.d.ts +2 -3
- package/multi-select/input/panel.model.d.ts +1 -6
- package/multi-select/input/select-input.component.d.ts +20 -9
- package/multi-select/panel/panel.component.d.ts +7 -19
- package/multi-select/select.model.d.ts +2 -5
- package/multi-select/select.translate.d.ts +1 -0
- package/package.json +77 -71
- package/safe-content/public-api.d.ts +1 -0
- package/safe-content/safe-content.module.d.ts +1 -2
- package/safe-content/safe-external-svg.pipe.d.ts +9 -0
- package/safe-content/safe-html.pipe.d.ts +3 -2
- package/schematics/collection.json +11 -7
- package/schematics/lib/angular-template.js +33 -1
- package/schematics/lib/file-update.js +10 -1
- package/schematics/lib/html-ast.js +75 -55
- package/schematics/lib/local-deps/package-lock.json +207 -187
- package/schematics/lib/migration-test.js +7 -3
- package/schematics/lib/typescript-ast.js +42 -0
- package/schematics/migrations.json +1 -7
- package/schematics/{migrations/tshirt-size → new-icons}/index.js +4 -4
- package/schematics/new-icons/mapping.js +287 -0
- package/schematics/new-icons/migration.js +52 -0
- package/schematics/{migrations/tshirt-size → new-icons}/migration.spec.js +10 -9
- package/simple-select/panel/panel.component.d.ts +6 -7
- package/simple-select/select.model.d.ts +2 -2
- package/simple-select/select.translate.d.ts +1 -0
- package/src/components/_picker.scss +40 -5
- package/src/components/_popup.scss +2 -2
- package/src/definitions/option/_option-item.scss +14 -1
- package/src/definitions/user/user-picture.scss +1 -1
- package/user/select/input/user-select-input.component.d.ts +3 -2
- package/dockerRegistry-ab9143b3-a15f-401e-aa9b-af4cfe3f1bef.env +0 -1
- package/esm2022/forms/abstract-field-component.mjs +0 -24
- package/esm2022/forms/checkboxfield/checkboxfield.component.mjs +0 -39
- package/esm2022/forms/switchfield/switchfield.component.mjs +0 -38
- package/esm2022/forms/textfield/textfield-addon.mjs +0 -2
- package/esm2022/forms/textfield/textfield.component.mjs +0 -71
- package/esm2022/forms/textfield/textfield.translate.mjs +0 -13
- package/forms/abstract-field-component.d.ts +0 -8
- package/forms/checkboxfield/checkboxfield.component.d.ts +0 -18
- package/forms/switchfield/switchfield.component.d.ts +0 -18
- package/forms/textfield/textfield.component.d.ts +0 -35
- package/schematics/migrations/tshirt-size/mapping.js +0 -256
- package/schematics/migrations/tshirt-size/migration.js +0 -60
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class LuSkipLinksComponent {
|
|
3
|
-
|
|
3
|
+
#private;
|
|
4
4
|
protected intl: import("./skip-links.translate").ILuSkipLinksLabel;
|
|
5
|
-
constructor(document: Document);
|
|
6
5
|
anchor(hash: string, e: Event): void;
|
|
7
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuSkipLinksComponent, never>;
|
|
8
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<LuSkipLinksComponent, "lu-skip-links", never, {}, {}, never, never, true, never>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { LuccaIcon } from '@lucca-front/icons';
|
|
2
3
|
import { Palette, PortalContent } from '@lucca-front/ng/core';
|
|
3
4
|
import { CalloutState } from '../callout-state';
|
|
@@ -8,6 +9,10 @@ export declare class CalloutDisclosureComponent {
|
|
|
8
9
|
palette: Palette;
|
|
9
10
|
size: 'M' | 'S';
|
|
10
11
|
set state(state: CalloutState);
|
|
12
|
+
open: boolean;
|
|
13
|
+
openChange: EventEmitter<boolean>;
|
|
14
|
+
onToggle(event: Event): void;
|
|
11
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalloutDisclosureComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalloutDisclosureComponent, "lu-callout-disclosure", never, { "icon": { "alias": "icon"; "required": false; }; "heading": { "alias": "heading"; "required": true; }; "palette": { "alias": "palette"; "required": false; }; "size": { "alias": "size"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalloutDisclosureComponent, "lu-callout-disclosure", never, { "icon": { "alias": "icon"; "required": false; }; "heading": { "alias": "heading"; "required": true; }; "palette": { "alias": "palette"; "required": false; }; "size": { "alias": "size"; "required": false; }; "state": { "alias": "state"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "openChange": "openChange"; }, never, ["*"], true, never>;
|
|
17
|
+
static ngAcceptInputType_open: unknown;
|
|
13
18
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { NgClass } from '@angular/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class NgClazz extends NgClass {
|
|
4
|
+
#private;
|
|
5
|
+
set ngClass(value: NgClass['ngClass']);
|
|
4
6
|
constructor();
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgClazz, never>;
|
|
6
8
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NgClazz, "[ngClazz]", never, {}, {}, never, never, true, never>;
|
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
import { OverlayConfig } from '@angular/cdk/overlay';
|
|
2
2
|
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef, Type } from '@angular/core';
|
|
3
3
|
import { BehaviorSubject, ReplaySubject, Subject } from 'rxjs';
|
|
4
|
+
import { LuOptionGroupDirective } from '../option';
|
|
4
5
|
import { LuSelectPanelRef } from '../panel';
|
|
5
6
|
import { LuOptionContext } from '../select.model';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare abstract class ALuSelectInputComponent<TOption, TValue> implements OnDestroy, OnInit {
|
|
8
|
-
|
|
9
|
+
private inputElementRef;
|
|
9
10
|
placeholder: string;
|
|
10
11
|
clearable: boolean;
|
|
11
12
|
get searchable(): boolean;
|
|
12
13
|
disabled: boolean;
|
|
13
|
-
protected get
|
|
14
|
+
protected get isSelectedClass(): boolean;
|
|
15
|
+
protected get isSearchFilledClass(): boolean;
|
|
14
16
|
protected abstract readonly hasValue: boolean;
|
|
15
17
|
get isPanelOpen(): boolean;
|
|
16
18
|
isPanelOpen$: BehaviorSubject<boolean>;
|
|
17
|
-
|
|
18
|
-
activeDescendant: string | undefined;
|
|
19
|
+
activeDescendant$: BehaviorSubject<string>;
|
|
19
20
|
get ariaControls(): string;
|
|
20
21
|
overlayConfig?: OverlayConfig;
|
|
21
22
|
set loading(value: boolean);
|
|
@@ -23,37 +24,46 @@ export declare abstract class ALuSelectInputComponent<TOption, TValue> implement
|
|
|
23
24
|
optionComparer: (option1: TOption, option2: TOption) => boolean;
|
|
24
25
|
optionTpl?: TemplateRef<LuOptionContext<TOption>> | Type<unknown>;
|
|
25
26
|
valueTpl?: TemplateRef<LuOptionContext<TOption>> | Type<unknown>;
|
|
27
|
+
grouping?: LuOptionGroupDirective<TOption, TValue, unknown>;
|
|
26
28
|
clueChange: EventEmitter<string>;
|
|
27
29
|
nextPage: EventEmitter<void>;
|
|
28
30
|
previousPage: EventEmitter<void>;
|
|
29
31
|
get value(): TValue;
|
|
30
32
|
protected set value(value: TValue);
|
|
33
|
+
get inputPlaceholder(): string | null;
|
|
34
|
+
clueChanged(clue: string): void;
|
|
31
35
|
protected _value?: TValue;
|
|
32
36
|
options$: ReplaySubject<TOption[]>;
|
|
33
37
|
loading$: ReplaySubject<boolean>;
|
|
34
38
|
clue: string | null;
|
|
39
|
+
previousClue: string | null;
|
|
35
40
|
protected onChange?: (value: TValue | null) => void;
|
|
36
41
|
protected onTouched?: () => void;
|
|
37
42
|
get panelRef(): LuSelectPanelRef<TOption, TValue> | undefined;
|
|
38
43
|
protected _panelRef?: LuSelectPanelRef<TOption, TValue>;
|
|
39
44
|
protected destroyed$: Subject<void>;
|
|
40
|
-
|
|
45
|
+
onClickOpenPanel($event: KeyboardEvent): void;
|
|
46
|
+
onKeyDownNavigation($event: KeyboardEvent): void;
|
|
41
47
|
protected changeDetectorRef: ChangeDetectorRef;
|
|
42
48
|
protected overlayContainerRef: HTMLElement;
|
|
43
|
-
protected
|
|
49
|
+
protected labelElement: HTMLElement | undefined;
|
|
44
50
|
protected labelId: string;
|
|
45
51
|
registerOnChange(onChange: (value: TValue) => void): void;
|
|
46
52
|
registerOnTouched(onTouched: () => void): void;
|
|
47
53
|
setDisabledState(isDisabled: boolean): void;
|
|
48
54
|
ngOnDestroy(): void;
|
|
49
55
|
ngOnInit(): void;
|
|
50
|
-
clearValue(event:
|
|
56
|
+
clearValue(event: Event): void;
|
|
51
57
|
openPanel(): void;
|
|
52
58
|
protected abstract buildPanelRef(): this['panelRef'];
|
|
53
59
|
protected bindInputToPanelRefEvents(): void;
|
|
60
|
+
protected focusInput(): void;
|
|
61
|
+
protected emptyClue(): void;
|
|
54
62
|
closePanel(): void;
|
|
55
63
|
writeValue(value: TValue): void;
|
|
56
64
|
updateValue(value: TValue): void;
|
|
57
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<ALuSelectInputComponent<any, any>, never>;
|
|
58
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; }; "valueTpl": { "alias": "valueTpl"; "required": false; }; }, { "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; },
|
|
66
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ALuSelectInputComponent<any, any>, never, never, { "placeholder": { "alias": "placeholder"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "overlayConfig": { "alias": "overlayConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionComparer": { "alias": "optionComparer"; "required": false; }; "optionTpl": { "alias": "optionTpl"; "required": false; }; "valueTpl": { "alias": "valueTpl"; "required": false; }; }, { "clueChange": "clueChange"; "nextPage": "nextPage"; "previousPage": "previousPage"; }, ["grouping"], never, false, never>;
|
|
67
|
+
static ngAcceptInputType_clearable: unknown;
|
|
68
|
+
static ngAcceptInputType_disabled: unknown;
|
|
59
69
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import type { ALuSelectInputComponent } from '../input';
|
|
3
|
+
import type { LuOptionGroupByContext } from '../select.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LuOptionGroupDirective<TOption, TValue, TGroup> {
|
|
6
|
+
select: ALuSelectInputComponent<TOption, TValue>;
|
|
7
|
+
selector: (option: TOption) => TGroup;
|
|
8
|
+
readonly templateRef: TemplateRef<LuOptionGroupByContext<TOption, TGroup>>;
|
|
9
|
+
static ngTemplateContextGuard<TOption, TValue, TGroup>(_dir: LuOptionGroupDirective<TOption, TValue, TGroup>, ctx: unknown): ctx is LuOptionGroupByContext<TOption, TGroup>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LuOptionGroupDirective<any, any, any>, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LuOptionGroupDirective<any, any, any>, "[luOptionGroup]", never, { "select": { "alias": "luOptionGroupSelect"; "required": false; }; "selector": { "alias": "luOptionGroupBy"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './default-option.component';
|
|
2
2
|
export * from './disabled.directive';
|
|
3
|
+
export * from './group.directive';
|
|
3
4
|
export { LuOptionOutletDirective as ɵLuOptionOutletDirective } from './option-outlet.directive';
|
|
4
5
|
export { LuOptionComponent as ɵLuOptionComponent } from './option.component';
|
|
5
6
|
export * from './option.directive';
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class LuOptionOutletDirective<T> implements OnChanges, OnDestroy {
|
|
5
5
|
luOptionOutlet?: Type<unknown> | TemplateRef<LuOptionContext<T>>;
|
|
6
6
|
luOptionOutletValue: T | undefined;
|
|
7
|
+
luOptionShowNull: boolean;
|
|
7
8
|
private viewContainerRef;
|
|
8
9
|
private injector;
|
|
9
10
|
private embeddedViewRef?;
|
|
@@ -15,5 +16,5 @@ export declare class LuOptionOutletDirective<T> implements OnChanges, OnDestroy
|
|
|
15
16
|
private createComponent;
|
|
16
17
|
private updateRefValue;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuOptionOutletDirective<any>, never>;
|
|
18
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LuOptionOutletDirective<any>, "[luOptionOutlet]", never, { "luOptionOutlet": { "alias": "luOptionOutlet"; "required": false; }; "luOptionOutletValue": { "alias": "luOptionOutletValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LuOptionOutletDirective<any>, "[luOptionOutlet]", never, { "luOptionOutlet": { "alias": "luOptionOutlet"; "required": false; }; "luOptionOutletValue": { "alias": "luOptionOutletValue"; "required": false; }; "luOptionShowNull": { "alias": "luOptionShowNull"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
20
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { ALuSelectInputComponent } from '../input';
|
|
3
|
-
import { LuOptionContext } from '../select.model';
|
|
2
|
+
import type { ALuSelectInputComponent } from '../input';
|
|
3
|
+
import type { LuOptionContext } from '../select.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class LuOptionDirective<TOption, TValue> {
|
|
6
6
|
private templateRef;
|
|
@@ -8,6 +8,8 @@ export declare abstract class LuSelectPanelRef<TOption, TValue> {
|
|
|
8
8
|
clueChanged: EventEmitter<string>;
|
|
9
9
|
activeOptionIdChanged: EventEmitter<string>;
|
|
10
10
|
options$: Observable<TOption>;
|
|
11
|
+
abstract handleKeyManagerEvent(event: KeyboardEvent): void;
|
|
11
12
|
abstract emitValue(value: TValue): void;
|
|
13
|
+
abstract selectCurrentlyHighlightedValue(): void;
|
|
12
14
|
close(): void;
|
|
13
15
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { LuOptionGroup } from '../select.model';
|
|
2
|
+
/**
|
|
3
|
+
* Generate groups with a O(n) complexity. Note that the options must be sorted by group.
|
|
4
|
+
*/
|
|
5
|
+
export declare function generateGroups<T, TGroup>(options: T[], selector: (option: T) => TGroup): LuOptionGroup<T, TGroup>[];
|
|
@@ -2,6 +2,13 @@ import { InjectionToken } from '@angular/core';
|
|
|
2
2
|
export interface LuOptionContext<T> {
|
|
3
3
|
$implicit: T;
|
|
4
4
|
}
|
|
5
|
+
export interface LuOptionGroupByContext<T, TGroup> {
|
|
6
|
+
$implicit: LuOptionGroup<T, TGroup>;
|
|
7
|
+
}
|
|
8
|
+
export interface LuOptionGroup<T, TGroup> {
|
|
9
|
+
key: TGroup;
|
|
10
|
+
options: T[];
|
|
11
|
+
}
|
|
5
12
|
export declare const SELECT_ID: InjectionToken<number>;
|
|
6
13
|
export declare const SELECT_LABEL: InjectionToken<HTMLLabelElement>;
|
|
7
14
|
export declare const SELECT_LABEL_ID: InjectionToken<string>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { PortalContent } from '@lucca-front/ng/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EmptyStatePageComponent {
|
|
4
|
+
/**
|
|
5
|
+
* Icon image (URL)
|
|
6
|
+
*/
|
|
7
|
+
icon: string;
|
|
8
|
+
/**
|
|
9
|
+
* Top right background image (URL)
|
|
10
|
+
*/
|
|
11
|
+
topRightBackground: string;
|
|
12
|
+
/**
|
|
13
|
+
* Top right foreground image (URL)
|
|
14
|
+
*/
|
|
15
|
+
topRightForeground: string;
|
|
16
|
+
/**
|
|
17
|
+
* Bottom left background image (URL)
|
|
18
|
+
*/
|
|
19
|
+
bottomLeftBackground: string;
|
|
20
|
+
/**
|
|
21
|
+
* Bottom left foreground image (URL)
|
|
22
|
+
*/
|
|
23
|
+
bottomLeftForeground: string;
|
|
24
|
+
title: string;
|
|
25
|
+
description: PortalContent;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStatePageComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStatePageComponent, "lu-empty-state-page", never, { "icon": { "alias": "icon"; "required": false; }; "topRightBackground": { "alias": "topRightBackground"; "required": false; }; "topRightForeground": { "alias": "topRightForeground"; "required": false; }; "bottomLeftBackground": { "alias": "bottomLeftBackground"; "required": false; }; "bottomLeftForeground": { "alias": "bottomLeftForeground"; "required": false; }; "title": { "alias": "title"; "required": true; }; "description": { "alias": "description"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PortalContent, Palette } from '@lucca-front/ng/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EmptyStateSectionComponent {
|
|
4
|
+
/**
|
|
5
|
+
* Icon URL
|
|
6
|
+
*/
|
|
7
|
+
icon: string;
|
|
8
|
+
palette: Palette;
|
|
9
|
+
center: boolean;
|
|
10
|
+
title: string;
|
|
11
|
+
description: PortalContent;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateSectionComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateSectionComponent, "lu-empty-state-section", never, { "icon": { "alias": "icon"; "required": false; }; "palette": { "alias": "palette"; "required": false; }; "center": { "alias": "center"; "required": false; }; "title": { "alias": "title"; "required": true; }; "description": { "alias": "description"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
14
|
+
static ngAcceptInputType_center: unknown;
|
|
15
|
+
}
|
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
import { DOCUMENT } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component,
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
|
3
3
|
import { getIntl } from '@lucca-front/ng/core';
|
|
4
4
|
import { LU_SKIP_LINKS_TRANSLATIONS } from './skip-links.translate';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export class LuSkipLinksComponent {
|
|
7
|
-
constructor(
|
|
8
|
-
this
|
|
7
|
+
constructor() {
|
|
8
|
+
this.#document = inject(DOCUMENT);
|
|
9
9
|
this.intl = getIntl(LU_SKIP_LINKS_TRANSLATIONS);
|
|
10
10
|
}
|
|
11
|
+
#document;
|
|
11
12
|
anchor(hash, e) {
|
|
12
13
|
e.preventDefault();
|
|
13
|
-
this
|
|
14
|
-
this
|
|
14
|
+
this.#document.location.hash = '';
|
|
15
|
+
this.#document.location.hash = hash;
|
|
15
16
|
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LuSkipLinksComponent, deps: [
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LuSkipLinksComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
18
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.2", type: LuSkipLinksComponent, isStandalone: true, selector: "lu-skip-links", ngImport: i0, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-grey mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-grey mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-grey mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\">{{ intl.Goto_Content }}</a>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:calc(var(--spacings-XS) + var(--spacings-XXS));bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--spacings-XXS) var(--spacings-XS);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-grey-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--colors-white-color);cursor:pointer}.skipLinks-action:focus-visible{outline-offset:2px;outline:2px solid var(--palettes-primary-700)}.skipLinks-action:not(:focus,:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}::ng-deep .navSide,::ng-deep .main-content{scroll-margin-top:var(--commons-banner-height)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
18
19
|
}
|
|
19
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LuSkipLinksComponent, decorators: [{
|
|
20
21
|
type: Component,
|
|
21
22
|
args: [{ selector: 'lu-skip-links', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<nav role=\"navigation\" id=\"top\" class=\"skipLinks\" [attr.aria-label]=\"intl.Goto\">\n\t<a\n\t\tclass=\"skipLinks-action palette-grey mod-XS\"\n\t\thref=\"#lucca-banner-solutions-container\"\n\t\t(click)=\"anchor('#lucca-banner-solutions-container', $event)\"\n\t\t>{{ intl.Goto_Nav_Banner }}</a\n\t>\n\t<a class=\"skipLinks-action palette-grey mod-XS\" href=\"#navSide\" (click)=\"anchor('#navSide', $event)\">{{ intl.Goto_Nav_Navside }}</a>\n\t<a class=\"skipLinks-action palette-grey mod-XS\" href=\"#main-content\" (click)=\"anchor('#main-content', $event)\">{{ intl.Goto_Content }}</a>\n</nav>\n", styles: [".skipLinks{position:fixed;list-style-type:none;justify-content:center;display:flex;margin:0;padding:0;z-index:9010;inset:calc(var(--spacings-XS) + var(--spacings-XXS));bottom:auto}.skipLinks-action{border:0;margin:0;font-weight:600;border-radius:var(--commons-borderRadius-M);font-size:var(--sizes-XS-fontSize);line-height:var(--sizes-XS-lineHeight);padding:var(--spacings-XXS) var(--spacings-XS);transition:all var(--commons-animations-durations-fast);background-color:var(--palettes-grey-600);display:inline-block;position:relative;text-decoration:none;vertical-align:baseline;white-space:nowrap;color:var(--colors-white-color);cursor:pointer}.skipLinks-action:focus-visible{outline-offset:2px;outline:2px solid var(--palettes-primary-700)}.skipLinks-action:not(:focus,:focus-visible){border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;contain:paint}::ng-deep .navSide,::ng-deep .main-content{scroll-margin-top:var(--commons-banner-height)}\n"] }]
|
|
22
|
-
}]
|
|
23
|
-
|
|
24
|
-
args: [DOCUMENT]
|
|
25
|
-
}] }] });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQy9DLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQVNwRSxNQUFNLE9BQU8sb0JBQW9CO0lBR2hDLFlBQXdDLFFBQWtCO1FBQWxCLGFBQVEsR0FBUixRQUFRLENBQVU7UUFGaEQsU0FBSSxHQUFHLE9BQU8sQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO0lBRVEsQ0FBQztJQUU5RCxNQUFNLENBQUMsSUFBWSxFQUFFLENBQVE7UUFDNUIsQ0FBQyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ25CLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksR0FBRyxFQUFFLENBQUM7UUFDakMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztJQUNwQyxDQUFDOzhHQVRXLG9CQUFvQixrQkFHWixRQUFRO2tHQUhoQixvQkFBb0IseUVDWmpDLDhsQkFVQTs7MkZERWEsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNDLGVBQWUsbUJBR1IsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJOzswQkFLSCxNQUFNOzJCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBET0NVTUVOVCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGdldEludGwgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvY29yZSc7XG5pbXBvcnQgeyBMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyB9IGZyb20gJy4vc2tpcC1saW5rcy50cmFuc2xhdGUnO1xuXG5AQ29tcG9uZW50KHtcblx0c2VsZWN0b3I6ICdsdS1za2lwLWxpbmtzJyxcblx0dGVtcGxhdGVVcmw6ICcuL3NraXAtbGlua3MuY29tcG9uZW50Lmh0bWwnLFxuXHRzdHlsZVVybHM6IFsnLi9za2lwLWxpbmtzLmNvbXBvbmVudC5zY3NzJ10sXG5cdGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuXHRzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBMdVNraXBMaW5rc0NvbXBvbmVudCB7XG5cdHByb3RlY3RlZCBpbnRsID0gZ2V0SW50bChMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyk7XG5cblx0Y29uc3RydWN0b3IoQEluamVjdChET0NVTUVOVCkgcHJvdGVjdGVkIGRvY3VtZW50OiBEb2N1bWVudCkge31cblxuXHRhbmNob3IoaGFzaDogc3RyaW5nLCBlOiBFdmVudCkge1xuXHRcdGUucHJldmVudERlZmF1bHQoKTtcblx0XHR0aGlzLmRvY3VtZW50LmxvY2F0aW9uLmhhc2ggPSAnJztcblx0XHR0aGlzLmRvY3VtZW50LmxvY2F0aW9uLmhhc2ggPSBoYXNoO1xuXHR9XG59XG4iLCI8bmF2IHJvbGU9XCJuYXZpZ2F0aW9uXCIgaWQ9XCJ0b3BcIiBjbGFzcz1cInNraXBMaW5rc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiaW50bC5Hb3RvXCI+XG5cdDxhXG5cdFx0Y2xhc3M9XCJza2lwTGlua3MtYWN0aW9uIHBhbGV0dGUtZ3JleSBtb2QtWFNcIlxuXHRcdGhyZWY9XCIjbHVjY2EtYmFubmVyLXNvbHV0aW9ucy1jb250YWluZXJcIlxuXHRcdChjbGljayk9XCJhbmNob3IoJyNsdWNjYS1iYW5uZXItc29sdXRpb25zLWNvbnRhaW5lcicsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fTmF2X0Jhbm5lciB9fTwvYVxuXHQ+XG5cdDxhIGNsYXNzPVwic2tpcExpbmtzLWFjdGlvbiBwYWxldHRlLWdyZXkgbW9kLVhTXCIgaHJlZj1cIiNuYXZTaWRlXCIgKGNsaWNrKT1cImFuY2hvcignI25hdlNpZGUnLCAkZXZlbnQpXCI+e3sgaW50bC5Hb3RvX05hdl9OYXZzaWRlIH19PC9hPlxuXHQ8YSBjbGFzcz1cInNraXBMaW5rcy1hY3Rpb24gcGFsZXR0ZS1ncmV5IG1vZC1YU1wiIGhyZWY9XCIjbWFpbi1jb250ZW50XCIgKGNsaWNrKT1cImFuY2hvcignI21haW4tY29udGVudCcsICRldmVudClcIj57eyBpbnRsLkdvdG9fQ29udGVudCB9fTwvYT5cbjwvbmF2PlxuIl19
|
|
23
|
+
}] });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2tpcC1saW5rcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hMTF5L3NraXAtbGlua3Mvc2tpcC1saW5rcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDM0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQy9DLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQVNwRSxNQUFNLE9BQU8sb0JBQW9CO0lBUGpDO1FBUUMsY0FBUyxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUVuQixTQUFJLEdBQUcsT0FBTyxDQUFDLDBCQUEwQixDQUFDLENBQUM7S0FPckQ7SUFUQSxTQUFTLENBQW9CO0lBSTdCLE1BQU0sQ0FBQyxJQUFZLEVBQUUsQ0FBUTtRQUM1QixDQUFDLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDbkIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNsQyxJQUFJLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUM7OEdBVFcsb0JBQW9CO2tHQUFwQixvQkFBb0IseUVDWmpDLDhsQkFVQTs7MkZERWEsb0JBQW9CO2tCQVBoQyxTQUFTOytCQUNDLGVBQWUsbUJBR1IsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRE9DVU1FTlQgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBnZXRJbnRsIH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL2NvcmUnO1xuaW1wb3J0IHsgTFVfU0tJUF9MSU5LU19UUkFOU0xBVElPTlMgfSBmcm9tICcuL3NraXAtbGlua3MudHJhbnNsYXRlJztcblxuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiAnbHUtc2tpcC1saW5rcycsXG5cdHRlbXBsYXRlVXJsOiAnLi9za2lwLWxpbmtzLmNvbXBvbmVudC5odG1sJyxcblx0c3R5bGVVcmxzOiBbJy4vc2tpcC1saW5rcy5jb21wb25lbnQuc2NzcyddLFxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcblx0c3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgTHVTa2lwTGlua3NDb21wb25lbnQge1xuXHQjZG9jdW1lbnQgPSBpbmplY3QoRE9DVU1FTlQpO1xuXG5cdHByb3RlY3RlZCBpbnRsID0gZ2V0SW50bChMVV9TS0lQX0xJTktTX1RSQU5TTEFUSU9OUyk7XG5cblx0YW5jaG9yKGhhc2g6IHN0cmluZywgZTogRXZlbnQpIHtcblx0XHRlLnByZXZlbnREZWZhdWx0KCk7XG5cdFx0dGhpcy4jZG9jdW1lbnQubG9jYXRpb24uaGFzaCA9ICcnO1xuXHRcdHRoaXMuI2RvY3VtZW50LmxvY2F0aW9uLmhhc2ggPSBoYXNoO1xuXHR9XG59XG4iLCI8bmF2IHJvbGU9XCJuYXZpZ2F0aW9uXCIgaWQ9XCJ0b3BcIiBjbGFzcz1cInNraXBMaW5rc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiaW50bC5Hb3RvXCI+XG5cdDxhXG5cdFx0Y2xhc3M9XCJza2lwTGlua3MtYWN0aW9uIHBhbGV0dGUtZ3JleSBtb2QtWFNcIlxuXHRcdGhyZWY9XCIjbHVjY2EtYmFubmVyLXNvbHV0aW9ucy1jb250YWluZXJcIlxuXHRcdChjbGljayk9XCJhbmNob3IoJyNsdWNjYS1iYW5uZXItc29sdXRpb25zLWNvbnRhaW5lcicsICRldmVudClcIlxuXHRcdD57eyBpbnRsLkdvdG9fTmF2X0Jhbm5lciB9fTwvYVxuXHQ+XG5cdDxhIGNsYXNzPVwic2tpcExpbmtzLWFjdGlvbiBwYWxldHRlLWdyZXkgbW9kLVhTXCIgaHJlZj1cIiNuYXZTaWRlXCIgKGNsaWNrKT1cImFuY2hvcignI25hdlNpZGUnLCAkZXZlbnQpXCI+e3sgaW50bC5Hb3RvX05hdl9OYXZzaWRlIH19PC9hPlxuXHQ8YSBjbGFzcz1cInNraXBMaW5rcy1hY3Rpb24gcGFsZXR0ZS1ncmV5IG1vZC1YU1wiIGhyZWY9XCIjbWFpbi1jb250ZW50XCIgKGNsaWNrKT1cImFuY2hvcignI21haW4tY29udGVudCcsICRldmVudClcIj57eyBpbnRsLkdvdG9fQ29udGVudCB9fTwvYT5cbjwvbmF2PlxuIl19
|
|
@@ -25,7 +25,7 @@ export class LuApiSelectInputComponent extends ALuSelectInputComponent {
|
|
|
25
25
|
useExisting: forwardRef(() => LuApiSelectInputComponent),
|
|
26
26
|
multi: true,
|
|
27
27
|
},
|
|
28
|
-
], usesInheritance: true, ngImport: i0, template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\n<div class=\"lu-select-value\">\n\t<div class=\"lu-select-display-wrapper\">\n\t\t<ng-container #display></ng-container>\n\t</div>\n</div>\n<div class=\"lu-select-suffix\">\n\t<lu-input-clearer></lu-input-clearer>\n</div>\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\n<lu-option-picker-advanced [option-comparer]=\"byId\">\n\t<header class=\"lu-picker-header\">\n\t\t<lu-api-paged-searcher\n\t\t\t[standard]=\"standard\"\n\t\t\t[api]=\"api\"\n\t\t\t[fields]=\"fields\"\n\t\t\t[filters]=\"filters\"\n\t\t\t[orderBy]=\"orderBy\"\n\t\t\t[sort]=\"sort\"\n\t\t></lu-api-paged-searcher>\n\t</header>\n\t<div class=\"lu-picker-content-option\">\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\n\t</div>\n</lu-option-picker-advanced>\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-XS);--components-options-item-padding-horizontal: var(--spacings-XS);--components-options-item-multiple-padding: 2.25rem;--components-options-item-icon-color: var(--palettes-grey-800);--components-options-checkbox-left: .5rem;--components-options-checkbox-size: 1.25rem;--components-options-checkbox-color: var(--palettes-primary-700);--components-options-checkbox-border-radius: 6px;--components-options-checkbox-border-color: var(--palettes-grey-700);--components-options-establishment-multiple-padding: 2rem}:host{--components-select-input-padding-horizontal: var(--spacings-XS);--components-select-input-padding-vertical: var(--spacings-XS);--components-select-framed-color: var(--palettes-grey-500);--components-select-framed-color50: var(--palettes-grey-50);--components-select-framed-see-through: var(--palettes-grey-50);--components-select-framed-text: var(--palettes-grey-800);--components-select-framed-placeholder: #cccccc;--components-select-framed-side-padding: var(--spacings-S);--components-select-framed-top-padding: var(--spacings-L);--components-select-framed-bottom-padding: var(--spacings-S);--components-select-framed-label-top-offset: var(--spacings-XS);cursor:pointer;outline:none;padding:0;gap:0}:host:after{display:inline-block;vertical-align:text-bottom;font-style:normal;font-family:Lucca icons;color:var(--palettes-grey-600);bottom:var(--components-select-input-padding-vertical);font-size:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);pointer-events:none;position:absolute;right:var(--components-select-input-padding-horizontal);transition:transform var(--commons-animations-durations-standard) ease}@supports (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"/\"\"}}@supports not (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"}}:host[disabled],:host.is-disabled{cursor:not-allowed;pointer-events:all}.lu-select-display-wrapper{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.lu-select-value{line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);display:none}.lu-select-placeholder{color:var(--palettes-grey-400);line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-suffix,.lu-select-clearer{position:absolute;bottom:.75rem;right:2.25rem}::ng-deep .lu-select-value .label{padding:var(--spacings-XXS) var(--spacings-XS);margin-left:0}::ng-deep .lu-select-value .chip{vertical-align:baseline;max-width:100%;margin:0 var(--spacings-XXS) var(--spacings-XXS) 0;text-overflow:ellipsis;overflow:hidden;vertical-align:top;white-space:nowrap}:host-context(.textfield.mod-S){padding:0}:host-context(.textfield.mod-S) .lu-select-value,:host-context(.textfield.mod-S) .lu-select-placeholder{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-XS-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-XS-lineHeight))}:host-context(.textfield.mod-S) .lu-select-clearer{bottom:var(--spacings-XS)}:host-context(.textfield.mod-S):after{line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-S-lineHeight)}:host-context(.textfield.mod-S) .lu-select-suffix{bottom:.5rem;right:2rem}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .label{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-S-lineHeight);font-weight:600;margin:0;padding:0;background-color:transparent}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .chip{height:var(--sizes-XS-lineHeight);line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-XS-fontSize);padding-left:var(--spacings-XXS);padding-right:var(--spacings-XXS);gap:var(--spacings-XXS)}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .numericBadge{--components-numericBadge-size: 1.25rem;--components-numericBadge-borderRadius: 6px;--components-numericBadge-fontSize: var(--sizes-XS-fontSize);--components-numericBadge-lineHeight: var(--sizes-XS-lineHeight)}:host-context(.textfield.mod-framed).textfield-input,:host-context(.form.mod-framed).textfield-input{padding:var(--components-select-framed-top-padding) 0 0}:host-context(.textfield.mod-framed).textfield-input:after,:host-context(.form.mod-framed).textfield-input:after{color:var(--palettes-grey-500);bottom:var(--components-select-framed-bottom-padding);right:var(--spacings-XS)}:host-context(.textfield.mod-framed).textfield-input .lu-select-value,:host-context(.form.mod-framed).textfield-input .lu-select-value{padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-placeholder,:host-context(.form.mod-framed).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400);padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-suffix,:host-context(.form.mod-framed).textfield-input .lu-select-suffix{bottom:var(--components-select-framed-bottom-padding);right:1.7rem}:host-context(.textfield.mod-filter) .lu-select-value,:host-context(.textfield.mod-filter) .lu-select-placeholder{padding:0;height:auto;padding-top:var(--spacings-S);color:var(--palettes-grey-800)}:host-context(.textfield.mod-material):after{color:var(--palettes-grey-500);bottom:.6rem;right:0}:host-context(.textfield.mod-material) .lu-select-value,:host-context(.textfield.mod-material) .lu-select-placeholder{padding-left:0;padding-right:.8rem}:host-context(.textfield.mod-material) .lu-select-suffix{right:calc(2 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material).is-select .lu-select-placeholder{display:none}:host-context(.textfield.mod-material).mod-search:after{bottom:0}:host-context(.textfield.mod-material).mod-search .lu-select-suffix{right:calc(2.75 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material .textfield-input.is-focused) .lu-select-placeholder{display:none}:host(.mod-multiple) .lu-select-value{height:auto;align-items:center}:host(.mod-multiple) .lu-select-display-wrapper{overflow:visible;white-space:normal;margin-bottom:calc(var(--spacings-XXS) * -1)}:host-context(.textfield.mod-outlined).textfield-input:after{color:var(--palettes-grey-600)}:host-context(.textfield.mod-outlined).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error):after{color:var(--palettes-error-600)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-filled) .lu-select-placeholder{display:none}:host-context(.textfield-input.is-filled) .lu-select-value{display:flex;align-items:flex-start}:host-context(.textfield .textfield-input.is-focused):after{transform:rotate(-180deg)}:host-context(.textfield-input.is-clearable) .lu-select-value{padding-right:3.5rem}:host-context(.textfield-input.is-error):after{color:var(--palettes-error-700)}:host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]):after{color:var(--commons-disabled-color)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]) .lu-select-placeholder{color:var(--commons-disabled-placeholder)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: LuInputClearerComponent, selector: "lu-input-clearer", outputs: ["onClear"], exportAs: ["luClearer"] }, { kind: "component", type: LuOptionPickerAdvancedComponent, selector: "lu-option-picker-advanced", exportAs: ["LuOptionPickerAdvanced"] }, { kind: "component", type: LuApiPagedSearcherComponent, selector: "lu-api-paged-searcher", inputs: ["standard", "api", "fields", "filters", "orderBy", "sort", "debounceTime"] }, { kind: "component", type: LuOptionItemComponent, selector: "lu-option", inputs: ["selected", "highlighted", "value", "disabled"], outputs: ["onSelect"] }, { kind: "directive", type: LuForOptionsDirective, selector: "[luForOptions]", inputs: ["luForOptionsTrackBy"] }, { kind: "directive", type: LuInputDisplayerDirective, selector: "[luDisplayer]", inputs: ["luDisplayerMultiple", "multiple"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
28
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\n<div class=\"lu-select-value\">\n\t<div class=\"lu-select-display-wrapper\">\n\t\t<ng-container #display></ng-container>\n\t</div>\n</div>\n<div class=\"lu-select-suffix\">\n\t<lu-input-clearer></lu-input-clearer>\n</div>\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\n<lu-option-picker-advanced [option-comparer]=\"byId\">\n\t<header class=\"lu-picker-header\">\n\t\t<lu-api-paged-searcher\n\t\t\t[standard]=\"standard\"\n\t\t\t[api]=\"api\"\n\t\t\t[fields]=\"fields\"\n\t\t\t[filters]=\"filters\"\n\t\t\t[orderBy]=\"orderBy\"\n\t\t\t[sort]=\"sort\"\n\t\t></lu-api-paged-searcher>\n\t</header>\n\t<div class=\"lu-picker-content-option\">\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\n\t</div>\n</lu-option-picker-advanced>\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-XXS);--components-options-item-padding-horizontal: var(--spacings-XS);--components-options-item-multiple-padding: 2.25rem;--components-options-item-icon-color: var(--palettes-grey-800);--components-options-checkbox-left: .5rem;--components-options-checkbox-size: 1.25rem;--components-options-checkbox-color: var(--palettes-primary-700);--components-options-checkbox-border-radius: 6px;--components-options-checkbox-border-color: var(--palettes-grey-700);--components-options-establishment-multiple-padding: 2rem}:host{--components-select-input-padding-horizontal: var(--spacings-XS);--components-select-input-padding-vertical: var(--spacings-XS);--components-select-framed-color: var(--palettes-grey-500);--components-select-framed-color50: var(--palettes-grey-50);--components-select-framed-see-through: var(--palettes-grey-50);--components-select-framed-text: var(--palettes-grey-800);--components-select-framed-placeholder: #cccccc;--components-select-framed-side-padding: var(--spacings-S);--components-select-framed-top-padding: var(--spacings-L);--components-select-framed-bottom-padding: var(--spacings-S);--components-select-framed-label-top-offset: var(--spacings-XS);cursor:pointer;outline:none;padding:0;gap:0}:host:after{display:inline-block;vertical-align:text-bottom;font-style:normal;font-family:Lucca icons;color:var(--palettes-grey-600);bottom:var(--components-select-input-padding-vertical);font-size:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);pointer-events:none;position:absolute;right:var(--components-select-input-padding-horizontal);transition:transform var(--commons-animations-durations-standard) ease}@supports (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"/\"\"}}@supports not (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"}}:host[disabled],:host.is-disabled{cursor:not-allowed;pointer-events:all}.lu-select-display-wrapper{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.lu-select-value{line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);display:none}.lu-select-placeholder{color:var(--palettes-grey-400);line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-suffix,.lu-select-clearer{position:absolute;bottom:.75rem;right:2.25rem}::ng-deep .lu-select-value .label{padding:var(--spacings-XXS) var(--spacings-XS);margin-left:0}::ng-deep .lu-select-value .chip{vertical-align:baseline;max-width:100%;margin:0 var(--spacings-XXS) var(--spacings-XXS) 0;text-overflow:ellipsis;overflow:hidden;vertical-align:top;white-space:nowrap}:host-context(.textfield.mod-S){padding:0}:host-context(.textfield.mod-S) .lu-select-value,:host-context(.textfield.mod-S) .lu-select-placeholder{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-XS-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-XS-lineHeight))}:host-context(.textfield.mod-S) .lu-select-clearer{bottom:var(--spacings-XS)}:host-context(.textfield.mod-S):after{line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-S-lineHeight)}:host-context(.textfield.mod-S) .lu-select-suffix{bottom:.5rem;right:2rem}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .label{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-S-lineHeight);font-weight:600;margin:0;padding:0;background-color:transparent}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .chip{height:var(--sizes-XS-lineHeight);line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-XS-fontSize);padding-left:var(--spacings-XXS);padding-right:var(--spacings-XXS);gap:var(--spacings-XXS)}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .numericBadge{--components-numericBadge-size: 1.25rem;--components-numericBadge-borderRadius: 6px;--components-numericBadge-fontSize: var(--sizes-XS-fontSize);--components-numericBadge-lineHeight: var(--sizes-XS-lineHeight)}:host-context(.textfield.mod-framed).textfield-input,:host-context(.form.mod-framed).textfield-input{padding:var(--components-select-framed-top-padding) 0 0}:host-context(.textfield.mod-framed).textfield-input:after,:host-context(.form.mod-framed).textfield-input:after{color:var(--palettes-grey-500);bottom:var(--components-select-framed-bottom-padding);right:var(--spacings-XS)}:host-context(.textfield.mod-framed).textfield-input .lu-select-value,:host-context(.form.mod-framed).textfield-input .lu-select-value{padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-placeholder,:host-context(.form.mod-framed).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400);padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-suffix,:host-context(.form.mod-framed).textfield-input .lu-select-suffix{bottom:var(--components-select-framed-bottom-padding);right:1.7rem}:host-context(.textfield.mod-filter) .lu-select-value,:host-context(.textfield.mod-filter) .lu-select-placeholder{padding:0;height:auto;padding-top:var(--spacings-S);color:var(--palettes-grey-800)}:host-context(.textfield.mod-material):after{color:var(--palettes-grey-500);bottom:.6rem;right:0}:host-context(.textfield.mod-material) .lu-select-value,:host-context(.textfield.mod-material) .lu-select-placeholder{padding-left:0;padding-right:.8rem}:host-context(.textfield.mod-material) .lu-select-suffix{right:calc(2 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material).is-select .lu-select-placeholder{display:none}:host-context(.textfield.mod-material).mod-search:after{bottom:0}:host-context(.textfield.mod-material).mod-search .lu-select-suffix{right:calc(2.75 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material .textfield-input.is-focused) .lu-select-placeholder{display:none}:host(.mod-multiple) .lu-select-value{height:auto;align-items:center}:host(.mod-multiple) .lu-select-display-wrapper{overflow:visible;white-space:normal;margin-bottom:calc(var(--spacings-XXS) * -1)}:host-context(.textfield.mod-outlined).textfield-input:after{color:var(--palettes-grey-600)}:host-context(.textfield.mod-outlined).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error):after{color:var(--palettes-error-600)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-filled) .lu-select-placeholder{display:none}:host-context(.textfield-input.is-filled) .lu-select-value{display:flex;align-items:flex-start}:host-context(.textfield .textfield-input.is-focused):after{transform:rotate(-180deg)}:host-context(.textfield-input.is-clearable) .lu-select-value{padding-right:3.5rem}:host-context(.textfield-input.is-error):after{color:var(--palettes-error-700)}:host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]):after{color:var(--commons-disabled-color)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]) .lu-select-placeholder{color:var(--commons-disabled-placeholder)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: LuInputClearerComponent, selector: "lu-input-clearer", outputs: ["onClear"], exportAs: ["luClearer"] }, { kind: "component", type: LuOptionPickerAdvancedComponent, selector: "lu-option-picker-advanced", exportAs: ["LuOptionPickerAdvanced"] }, { kind: "component", type: LuApiPagedSearcherComponent, selector: "lu-api-paged-searcher", inputs: ["standard", "api", "fields", "filters", "orderBy", "sort", "debounceTime"] }, { kind: "component", type: LuOptionItemComponent, selector: "lu-option", inputs: ["selected", "highlighted", "value", "disabled"], outputs: ["onSelect"] }, { kind: "directive", type: LuForOptionsDirective, selector: "[luForOptions]", inputs: ["luForOptionsTrackBy"] }, { kind: "directive", type: LuInputDisplayerDirective, selector: "[luDisplayer]", inputs: ["luDisplayerMultiple", "multiple"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
29
29
|
}
|
|
30
30
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImport: i0, type: LuApiSelectInputComponent, decorators: [{
|
|
31
31
|
type: Component,
|
|
@@ -35,7 +35,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImpor
|
|
|
35
35
|
useExisting: forwardRef(() => LuApiSelectInputComponent),
|
|
36
36
|
multi: true,
|
|
37
37
|
},
|
|
38
|
-
], template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\n<div class=\"lu-select-value\">\n\t<div class=\"lu-select-display-wrapper\">\n\t\t<ng-container #display></ng-container>\n\t</div>\n</div>\n<div class=\"lu-select-suffix\">\n\t<lu-input-clearer></lu-input-clearer>\n</div>\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\n<lu-option-picker-advanced [option-comparer]=\"byId\">\n\t<header class=\"lu-picker-header\">\n\t\t<lu-api-paged-searcher\n\t\t\t[standard]=\"standard\"\n\t\t\t[api]=\"api\"\n\t\t\t[fields]=\"fields\"\n\t\t\t[filters]=\"filters\"\n\t\t\t[orderBy]=\"orderBy\"\n\t\t\t[sort]=\"sort\"\n\t\t></lu-api-paged-searcher>\n\t</header>\n\t<div class=\"lu-picker-content-option\">\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\n\t</div>\n</lu-option-picker-advanced>\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-
|
|
38
|
+
], template: "<div class=\"lu-select-placeholder\">{{ placeholder }}</div>\n<div class=\"lu-select-value\">\n\t<div class=\"lu-select-display-wrapper\">\n\t\t<ng-container #display></ng-container>\n\t</div>\n</div>\n<div class=\"lu-select-suffix\">\n\t<lu-input-clearer></lu-input-clearer>\n</div>\n<span [class.chip]=\"multiple\" *luDisplayer=\"let option\">{{ option.name }}</span>\n<lu-option-picker-advanced [option-comparer]=\"byId\">\n\t<header class=\"lu-picker-header\">\n\t\t<lu-api-paged-searcher\n\t\t\t[standard]=\"standard\"\n\t\t\t[api]=\"api\"\n\t\t\t[fields]=\"fields\"\n\t\t\t[filters]=\"filters\"\n\t\t\t[orderBy]=\"orderBy\"\n\t\t\t[sort]=\"sort\"\n\t\t></lu-api-paged-searcher>\n\t</header>\n\t<div class=\"lu-picker-content-option\">\n\t\t<lu-option *luForOptions=\"let option\" [value]=\"option\">{{ option.name }}</lu-option>\n\t</div>\n</lu-option-picker-advanced>\n", styles: [":root{--components-options-item-padding-vertical: var(--spacings-XXS);--components-options-item-padding-horizontal: var(--spacings-XS);--components-options-item-multiple-padding: 2.25rem;--components-options-item-icon-color: var(--palettes-grey-800);--components-options-checkbox-left: .5rem;--components-options-checkbox-size: 1.25rem;--components-options-checkbox-color: var(--palettes-primary-700);--components-options-checkbox-border-radius: 6px;--components-options-checkbox-border-color: var(--palettes-grey-700);--components-options-establishment-multiple-padding: 2rem}:host{--components-select-input-padding-horizontal: var(--spacings-XS);--components-select-input-padding-vertical: var(--spacings-XS);--components-select-framed-color: var(--palettes-grey-500);--components-select-framed-color50: var(--palettes-grey-50);--components-select-framed-see-through: var(--palettes-grey-50);--components-select-framed-text: var(--palettes-grey-800);--components-select-framed-placeholder: #cccccc;--components-select-framed-side-padding: var(--spacings-S);--components-select-framed-top-padding: var(--spacings-L);--components-select-framed-bottom-padding: var(--spacings-S);--components-select-framed-label-top-offset: var(--spacings-XS);cursor:pointer;outline:none;padding:0;gap:0}:host:after{display:inline-block;vertical-align:text-bottom;font-style:normal;font-family:Lucca icons;color:var(--palettes-grey-600);bottom:var(--components-select-input-padding-vertical);font-size:var(--sizes-M-lineHeight);line-height:var(--sizes-M-lineHeight);pointer-events:none;position:absolute;right:var(--components-select-input-padding-horizontal);transition:transform var(--commons-animations-durations-standard) ease}@supports (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"/\"\"}}@supports not (content: \"*\"/\"\"){:host:after{content:\"\\e97c\"}}:host[disabled],:host.is-disabled{cursor:not-allowed;pointer-events:all}.lu-select-display-wrapper{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.lu-select-value{line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);display:none}.lu-select-placeholder{color:var(--palettes-grey-400);line-height:var(--sizes-M-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-M-lineHeight));padding:var(--components-select-input-padding-vertical) 3.5rem var(--components-select-input-padding-vertical) var(--components-select-input-padding-horizontal);transition:all var(--commons-animations-durations-standard);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lu-select-suffix,.lu-select-clearer{position:absolute;bottom:.75rem;right:2.25rem}::ng-deep .lu-select-value .label{padding:var(--spacings-XXS) var(--spacings-XS);margin-left:0}::ng-deep .lu-select-value .chip{vertical-align:baseline;max-width:100%;margin:0 var(--spacings-XXS) var(--spacings-XXS) 0;text-overflow:ellipsis;overflow:hidden;vertical-align:top;white-space:nowrap}:host-context(.textfield.mod-S){padding:0}:host-context(.textfield.mod-S) .lu-select-value,:host-context(.textfield.mod-S) .lu-select-placeholder{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-XS-lineHeight);min-height:calc(var(--components-select-framed-bottom-padding) + var(--sizes-XS-lineHeight))}:host-context(.textfield.mod-S) .lu-select-clearer{bottom:var(--spacings-XS)}:host-context(.textfield.mod-S):after{line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-S-lineHeight)}:host-context(.textfield.mod-S) .lu-select-suffix{bottom:.5rem;right:2rem}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .label{font-size:var(--sizes-S-fontSize);line-height:var(--sizes-S-lineHeight);font-weight:600;margin:0;padding:0;background-color:transparent}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .chip{height:var(--sizes-XS-lineHeight);line-height:var(--sizes-XS-lineHeight);font-size:var(--sizes-XS-fontSize);padding-left:var(--spacings-XXS);padding-right:var(--spacings-XXS);gap:var(--spacings-XXS)}:host-context(.textfield.mod-S) ::ng-deep .lu-select-value .numericBadge{--components-numericBadge-size: 1.25rem;--components-numericBadge-borderRadius: 6px;--components-numericBadge-fontSize: var(--sizes-XS-fontSize);--components-numericBadge-lineHeight: var(--sizes-XS-lineHeight)}:host-context(.textfield.mod-framed).textfield-input,:host-context(.form.mod-framed).textfield-input{padding:var(--components-select-framed-top-padding) 0 0}:host-context(.textfield.mod-framed).textfield-input:after,:host-context(.form.mod-framed).textfield-input:after{color:var(--palettes-grey-500);bottom:var(--components-select-framed-bottom-padding);right:var(--spacings-XS)}:host-context(.textfield.mod-framed).textfield-input .lu-select-value,:host-context(.form.mod-framed).textfield-input .lu-select-value{padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-placeholder,:host-context(.form.mod-framed).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400);padding:0 calc(var(--components-select-framed-side-padding) * 3) var(--components-select-framed-bottom-padding) var(--components-select-framed-side-padding)}:host-context(.textfield.mod-framed).textfield-input .lu-select-suffix,:host-context(.form.mod-framed).textfield-input .lu-select-suffix{bottom:var(--components-select-framed-bottom-padding);right:1.7rem}:host-context(.textfield.mod-filter) .lu-select-value,:host-context(.textfield.mod-filter) .lu-select-placeholder{padding:0;height:auto;padding-top:var(--spacings-S);color:var(--palettes-grey-800)}:host-context(.textfield.mod-material):after{color:var(--palettes-grey-500);bottom:.6rem;right:0}:host-context(.textfield.mod-material) .lu-select-value,:host-context(.textfield.mod-material) .lu-select-placeholder{padding-left:0;padding-right:.8rem}:host-context(.textfield.mod-material) .lu-select-suffix{right:calc(2 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material).is-select .lu-select-placeholder{display:none}:host-context(.textfield.mod-material).mod-search:after{bottom:0}:host-context(.textfield.mod-material).mod-search .lu-select-suffix{right:calc(2.75 * var(--components-select-input-padding-horizontal))}:host-context(.textfield.mod-material .textfield-input.is-focused) .lu-select-placeholder{display:none}:host(.mod-multiple) .lu-select-value{height:auto;align-items:center}:host(.mod-multiple) .lu-select-display-wrapper{overflow:visible;white-space:normal;margin-bottom:calc(var(--spacings-XXS) * -1)}:host-context(.textfield.mod-outlined).textfield-input:after{color:var(--palettes-grey-600)}:host-context(.textfield.mod-outlined).textfield-input .lu-select-placeholder{color:var(--palettes-grey-400)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error):after{color:var(--palettes-error-600)}:host-context(.textfield.mod-outlined) :host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-filled) .lu-select-placeholder{display:none}:host-context(.textfield-input.is-filled) .lu-select-value{display:flex;align-items:flex-start}:host-context(.textfield .textfield-input.is-focused):after{transform:rotate(-180deg)}:host-context(.textfield-input.is-clearable) .lu-select-value{padding-right:3.5rem}:host-context(.textfield-input.is-error):after{color:var(--palettes-error-700)}:host-context(.textfield-input.is-error) .lu-select-placeholder{color:var(--palettes-error-400)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]):after{color:var(--commons-disabled-color)}:host-context(.textfield-input.is-disabled,.textfield-input[disabled]) .lu-select-placeholder{color:var(--commons-disabled-placeholder)}\n"] }]
|
|
39
39
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i1.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.Renderer2 }], propDecorators: { standard: [{
|
|
40
40
|
type: Input
|
|
41
41
|
}], api: [{
|
|
@@ -49,4 +49,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.2", ngImpor
|
|
|
49
49
|
}], sort: [{
|
|
50
50
|
type: Input
|
|
51
51
|
}] } });
|
|
52
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXNlbGVjdC1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9uZy9hcGkvc2VsZWN0L2lucHV0L2FwaS1zZWxlY3QtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvbmcvYXBpL3NlbGVjdC9pbnB1dC9hcGktc2VsZWN0LWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQWMsVUFBVSxFQUFFLEtBQUssRUFBK0IsTUFBTSxlQUFlLENBQUM7QUFDakssT0FBTyxFQUF3QixpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzNGLE9BQU8sRUFBaUIscUJBQXFCLEVBQW9CLHFCQUFxQixFQUFFLCtCQUErQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDeEosT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDakUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sYUFBYSxDQUFDOzs7QUFpQjFELE1BQU0sT0FBTyx5QkFDWixTQUFRLHVCQUFnRjtJQW9CeEYsWUFDb0Isa0JBQXFDLEVBQ3JDLFFBQWlCLEVBQ2pCLFdBQW9DLEVBQ3BDLGlCQUFtQyxFQUNuQyxTQUFvQjtRQUV2QyxLQUFLLENBQUMsa0JBQWtCLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxpQkFBaUIsRUFBRSxTQUFTLENBQUMsQ0FBQztRQU41RCx1QkFBa0IsR0FBbEIsa0JBQWtCLENBQW1CO1FBQ3JDLGFBQVEsR0FBUixRQUFRLENBQVM7UUFDakIsZ0JBQVcsR0FBWCxXQUFXLENBQXlCO1FBQ3BDLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBa0I7UUFDbkMsY0FBUyxHQUFULFNBQVMsQ0FBVztRQXRCL0IsYUFBUSxHQUFnQixJQUFJLENBQUM7UUFnQnRDLFNBQUksR0FBd0IsQ0FBQyxPQUFVLEVBQUUsT0FBVSxFQUFFLEVBQUUsQ0FBQyxPQUFPLElBQUksT0FBTyxJQUFJLE9BQU8sQ0FBQyxFQUFFLEtBQUssT0FBTyxDQUFDLEVBQUUsQ0FBQztJQVN4RyxDQUFDOzhHQTdCVyx5QkFBeUI7a0dBQXpCLHlCQUF5QixrTEFSMUI7WUFDVjtnQkFDQyxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHlCQUF5QixDQUFDO2dCQUN4RCxLQUFLLEVBQUUsSUFBSTthQUNYO1NBQ0QsaURDdEJGLDgyQkF5QkEsd2hRRFZXLFlBQVksK0JBQUUsdUJBQXVCLDRHQUFFLCtCQUErQiw0R0FBRSwyQkFBMkIsdUpBQUUscUJBQXFCLHVJQUFFLHFCQUFxQiw0RkFBRSx5QkFBeUI7OzJGQVMxSyx5QkFBeUI7a0JBZnJDLFNBQVM7K0JBQ0MsZUFBZSxtQkFHUix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUCxDQUFDLFlBQVksRUFBRSx1QkFBdUIsRUFBRSwrQkFBK0IsRUFBRSwyQkFBMkIsRUFBRSxxQkFBcUIsRUFBRSxxQkFBcUIsRUFBRSx5QkFBeUIsQ0FBQyxhQUM1Szt3QkFDVjs0QkFDQyxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSwwQkFBMEIsQ0FBQzs0QkFDeEQsS0FBSyxFQUFFLElBQUk7eUJBQ1g7cUJBQ0Q7NExBTVEsUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxHQUFHO3NCQUFYLEtBQUs7Z0JBSUcsTUFBTTtzQkFBZCxLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFJRyxPQUFPO3NCQUFmLEtBQUs7Z0JBSUcsSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT3ZlcmxheSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBBZnRlclZpZXdJbml0LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ2hhbmdlRGV0ZWN0b3JSZWYsIENvbXBvbmVudCwgRWxlbWVudFJlZiwgZm9yd2FyZFJlZiwgSW5wdXQsIFJlbmRlcmVyMiwgVmlld0NvbnRhaW5lclJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29udHJvbFZhbHVlQWNjZXNzb3IsIE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTHVJbnB1dENsZWFyZXJDb21wb25lbnQsIEx1SW5wdXREaXNwbGF5ZXJEaXJlY3RpdmUgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvaW5wdXQnO1xuaW1wb3J0IHsgSUx1T3B0aW9uSXRlbSwgTHVGb3JPcHRpb25zRGlyZWN0aXZlLCBMdU9wdGlvbkNvbXBhcmVyLCBMdU9wdGlvbkl0ZW1Db21wb25lbnQsIEx1T3B0aW9uUGlja2VyQWR2YW5jZWRDb21wb25lbnQgfSBmcm9tICdAbHVjY2EtZnJvbnQvbmcvb3B0aW9uJztcbmltcG9ydCB7IEFMdVNlbGVjdElucHV0Q29tcG9uZW50IH0gZnJvbSAnQGx1Y2NhLWZyb250L25nL3NlbGVjdCc7XG5pbXBvcnQgeyBMdUFwaVBhZ2VkU2VhcmNoZXJDb21wb25lbnQgfSBmcm9tICcuLi9zZWFyY2hlcic7XG5cbkBDb21wb25lbnQoe1xuXHRzZWxlY3RvcjogJ2x1LWFwaS1zZWxlY3QnLFxuXHR0ZW1wbGF0ZVVybDogJy4vYXBpLXNlbGVjdC1pbnB1dC5jb21wb25lbnQuaHRtbCcsXG5cdHN0eWxlVXJsczogWycuL2FwaS1zZWxlY3QtaW5wdXQuY29tcG9uZW50LnNjc3MnXSxcblx0Y2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG5cdHN0YW5kYWxvbmU6IHRydWUsXG5cdGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEx1SW5wdXRDbGVhcmVyQ29tcG9uZW50LCBMdU9wdGlvblBpY2tlckFkdmFuY2VkQ29tcG9uZW50LCBMdUFwaVBhZ2VkU2VhcmNoZXJDb21wb25lbnQsIEx1T3B0aW9uSXRlbUNvbXBvbmVudCwgTHVGb3JPcHRpb25zRGlyZWN0aXZlLCBMdUlucHV0RGlzcGxheWVyRGlyZWN0aXZlXSxcblx0cHJvdmlkZXJzOiBbXG5cdFx0e1xuXHRcdFx0cHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXG5cdFx0XHR1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBMdUFwaVNlbGVjdElucHV0Q29tcG9uZW50KSxcblx0XHRcdG11bHRpOiB0cnVlLFxuXHRcdH0sXG5cdF0sXG59KVxuZXhwb3J0IGNsYXNzIEx1QXBpU2VsZWN0SW5wdXRDb21wb25lbnQ8VCBleHRlbmRzIGltcG9ydCgnLi4vLi4vYXBpLm1vZGVsJykuSUx1QXBpSXRlbSA9IGltcG9ydCgnLi4vLi4vYXBpLm1vZGVsJykuSUx1QXBpSXRlbT5cblx0ZXh0ZW5kcyBBTHVTZWxlY3RJbnB1dENvbXBvbmVudDxULCBMdU9wdGlvblBpY2tlckFkdmFuY2VkQ29tcG9uZW50PFQsIElMdU9wdGlvbkl0ZW08VD4+PlxuXHRpbXBsZW1lbnRzIENvbnRyb2xWYWx1ZUFjY2Vzc29yLCBBZnRlclZpZXdJbml0XG57XG5cdEBJbnB1dCgpIHN0YW5kYXJkOiAndjMnIHwgJ3Y0JyA9ICd2Myc7XG5cdEBJbnB1dCgpIGFwaTogc3RyaW5nO1xuXHQvKipcblx0ICogb25seSB3b3JrcyB3aXRoIHN0YW5kYXJkPVwidjNcIlxuXHQgKi9cblx0QElucHV0KCkgZmllbGRzOiBzdHJpbmc7XG5cdEBJbnB1dCgpIGZpbHRlcnM6IHN0cmluZ1tdO1xuXHQvKipcblx0ICogb25seSB3b3JrcyB3aXRoIHN0YW5kYXJkPVwidjNcIiwgb3RoZXJ3aXNlIHVzZSBzb3J0XG5cdCAqL1xuXHRASW5wdXQoKSBvcmRlckJ5OiBzdHJpbmc7XG5cdC8qKlxuXHQgKiBvbmx5IHdvcmtzIHdpdGggc3RhbmRhcmQ9XCJ2NFwiLCBvdGhlcndpc2UgdXNlIG9yZGVyQnlcblx0ICovXG5cdEBJbnB1dCgpIHNvcnQ6IHN0cmluZztcblxuXHRieUlkOiBMdU9wdGlvbkNvbXBhcmVyPFQ+ID0gKG9wdGlvbjE6IFQsIG9wdGlvbjI6IFQpID0+IG9wdGlvbjEgJiYgb3B0aW9uMiAmJiBvcHRpb24xLmlkID09PSBvcHRpb24yLmlkO1xuXHRjb25zdHJ1Y3Rvcihcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX2NoYW5nZURldGVjdG9yUmVmOiBDaGFuZ2VEZXRlY3RvclJlZixcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX292ZXJsYXk6IE92ZXJsYXksXG5cdFx0cHJvdGVjdGVkIG92ZXJyaWRlIF9lbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50Pixcblx0XHRwcm90ZWN0ZWQgb3ZlcnJpZGUgX3ZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYsXG5cdFx0cHJvdGVjdGVkIG92ZXJyaWRlIF9yZW5kZXJlcjogUmVuZGVyZXIyLFxuXHQpIHtcblx0XHRzdXBlcihfY2hhbmdlRGV0ZWN0b3JSZWYsIF9vdmVybGF5LCBfZWxlbWVudFJlZiwgX3ZpZXdDb250YWluZXJSZWYsIF9yZW5kZXJlcik7XG5cdH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJsdS1zZWxlY3QtcGxhY2Vob2xkZXJcIj57eyBwbGFjZWhvbGRlciB9fTwvZGl2PlxuPGRpdiBjbGFzcz1cImx1LXNlbGVjdC12YWx1ZVwiPlxuXHQ8ZGl2IGNsYXNzPVwibHUtc2VsZWN0LWRpc3BsYXktd3JhcHBlclwiPlxuXHRcdDxuZy1jb250YWluZXIgI2Rpc3BsYXk+PC9uZy1jb250YWluZXI+XG5cdDwvZGl2PlxuPC9kaXY+XG48ZGl2IGNsYXNzPVwibHUtc2VsZWN0LXN1ZmZpeFwiPlxuXHQ8bHUtaW5wdXQtY2xlYXJlcj48L2x1LWlucHV0LWNsZWFyZXI+XG48L2Rpdj5cbjxzcGFuIFtjbGFzcy5jaGlwXT1cIm11bHRpcGxlXCIgKmx1RGlzcGxheWVyPVwibGV0IG9wdGlvblwiPnt7IG9wdGlvbi5uYW1lIH19PC9zcGFuPlxuPGx1LW9wdGlvbi1waWNrZXItYWR2YW5jZWQgW29wdGlvbi1jb21wYXJlcl09XCJieUlkXCI+XG5cdDxoZWFkZXIgY2xhc3M9XCJsdS1waWNrZXItaGVhZGVyXCI+XG5cdFx0PGx1LWFwaS1wYWdlZC1zZWFyY2hlclxuXHRcdFx0W3N0YW5kYXJkXT1cInN0YW5kYXJkXCJcblx0XHRcdFthcGldPVwiYXBpXCJcblx0XHRcdFtmaWVsZHNdPVwiZmllbGRzXCJcblx0XHRcdFtmaWx0ZXJzXT1cImZpbHRlcnNcIlxuXHRcdFx0W29yZGVyQnldPVwib3JkZXJCeVwiXG5cdFx0XHRbc29ydF09XCJzb3J0XCJcblx0XHQ+PC9sdS1hcGktcGFnZWQtc2VhcmNoZXI+XG5cdDwvaGVhZGVyPlxuXHQ8ZGl2IGNsYXNzPVwibHUtcGlja2VyLWNvbnRlbnQtb3B0aW9uXCI+XG5cdFx0PGx1LW9wdGlvbiAqbHVGb3JPcHRpb25zPVwibGV0IG9wdGlvblwiIFt2YWx1ZV09XCJvcHRpb25cIj57eyBvcHRpb24ubmFtZSB9fTwvbHUtb3B0aW9uPlxuXHQ8L2Rpdj5cbjwvbHUtb3B0aW9uLXBpY2tlci1hZHZhbmNlZD5cbiJdfQ==
|