@leanix/components 0.4.591 → 0.4.593

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/index.d.ts CHANGED
@@ -30,6 +30,7 @@ export * from './lib/core-ui/components/counter/counter.component';
30
30
  export * from './lib/core-ui/components/ellipsis/ellipsis.component';
31
31
  export * from './lib/core-ui/components/empty-state/empty-state.component';
32
32
  export * from './lib/core-ui/components/icon-scale/icon-scale.component';
33
+ export * from './lib/core-ui/components/page-header/page-header.component';
33
34
  export * from './lib/core-ui/components/skeleton/skeleton.component';
34
35
  export * from './lib/core-ui/components/spinner/spinner.component';
35
36
  export * from './lib/core-ui/components/stepper/stepper.component';
@@ -39,6 +40,7 @@ export * from './lib/core-ui/components/tiny-spinner/tiny-spinner.component';
39
40
  export * from './lib/core-ui/components/tokenizer/token/token.component';
40
41
  export * from './lib/core-ui/components/tokenizer/tokenizer-overflow-popover/tokenizer-overflow-popover.component';
41
42
  export * from './lib/core-ui/components/tokenizer/tokenizer.component';
43
+ export * from './lib/core-ui/icon/icon.component';
42
44
  export * from './lib/core-ui/tooltip/tooltip-position.interface';
43
45
  export * from './lib/core-ui/tooltip/tooltip.component';
44
46
  export * from './lib/core-ui/tooltip/tooltip.directive';
@@ -67,7 +69,6 @@ export * from './lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list-i
67
69
  export * from './lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component';
68
70
  export * from './lib/forms-ui/components/error-message/error-message.component';
69
71
  export * from './lib/forms-ui/components/form-error/form-error.component';
70
- export * from './lib/forms-ui/components/icon/icon.component';
71
72
  export * from './lib/forms-ui/components/input/input.component';
72
73
  export * from './lib/forms-ui/components/multi-select/multi-select.component';
73
74
  export * from './lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component';
@@ -0,0 +1,49 @@
1
+ import { RouterLink } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * The page header acts as a central navigation tool, guiding users through the application and helping them understand their current location.
5
+ * It often includes a back arrow for easy navigation in child pages and may feature a toolbar on the right for quick access to actions or tools.
6
+ * Additionally, it can include a breadcrumb.
7
+ *
8
+ * ### Projection slots
9
+ * - `header-title`: Defines the page title content
10
+ * - `header-content`: Defines additional content below the page title
11
+ * - `header-buttons`: Defines the header action buttons
12
+ */
13
+ export declare class PageHeaderComponent {
14
+ /**
15
+ * Optional title to display in the header.
16
+ * If none is passed down, the component assumes
17
+ * you will pass down a title via the `header-title` projection slot.
18
+ */
19
+ pageTitle: import("@angular/core").InputSignal<string | undefined>;
20
+ /**
21
+ * Relative URL to navigate back to
22
+ */
23
+ backUrl: import("@angular/core").InputSignal<string[]>;
24
+ /**
25
+ * Query parameters to append to the `backUrl`
26
+ */
27
+ queryParams: import("@angular/core").InputSignal<{
28
+ [key: string]: string;
29
+ }>;
30
+ /**
31
+ * Accessible name of the back link
32
+ */
33
+ backUrlLabel: import("@angular/core").InputSignal<string | null | undefined>;
34
+ /**
35
+ * Additional navigation state for the back link
36
+ */
37
+ navigationStateOptions: import("@angular/core").InputSignal<Pick<RouterLink, "state">>;
38
+ /**
39
+ * Whether a divider should be shown below the header.
40
+ * @default true
41
+ */
42
+ showDivider: import("@angular/core").InputSignal<boolean>;
43
+ /**
44
+ * Event emitted when the back icon is clicked.
45
+ */
46
+ backIconClick: import("@angular/core").OutputEmitterRef<void>;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponent, "lx-page-header", never, { "pageTitle": { "alias": "pageTitle"; "required": false; "isSignal": true; }; "backUrl": { "alias": "backUrl"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; "backUrlLabel": { "alias": "backUrlLabel"; "required": false; "isSignal": true; }; "navigationStateOptions": { "alias": "navigationStateOptions"; "required": false; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; }, { "backIconClick": "backIconClick"; }, never, ["[header-title]", "[header-content]", "[header-buttons]"], true, never>;
49
+ }
@@ -28,30 +28,31 @@ import * as i13 from "./pipes/custom-date.pipe";
28
28
  import * as i14 from "./components/ellipsis/ellipsis.component";
29
29
  import * as i15 from "./pipes/highlight-range.pipe";
30
30
  import * as i16 from "./pipes/highlight-term.pipe";
31
- import * as i17 from "./components/icon-scale/icon-scale.component";
32
- import * as i18 from "./linkify/linkify.pipe";
33
- import * as i19 from "./linkify/unlinkify.pipe";
34
- import * as i20 from "./pipes/lx-time-ago.pipe";
35
- import * as i21 from "./pipes/lx-translate.pipe";
36
- import * as i22 from "./pipes/markdown.pipe";
37
- import * as i23 from "./pipes/nbsp.pipe";
38
- import * as i24 from "./pipes/lx-is-uuid.pipe";
39
- import * as i25 from "./components/stepper/stepper.component";
40
- import * as i26 from "./components/spinner/spinner.component";
41
- import * as i27 from "./components/table/table.component";
42
- import * as i28 from "./components/table/table-header/table-header.component";
43
- import * as i29 from "./components/tiny-spinner/tiny-spinner.component";
44
- import * as i30 from "./tooltip/tooltip.directive";
45
- import * as i31 from "./pipes/translation-after.pipe";
46
- import * as i32 from "./pipes/translation-before.pipe";
47
- import * as i33 from "./pipes/translation-between.pipe";
48
- import * as i34 from "./pipes/sort.pipe";
49
- import * as i35 from "./pipes/contrast-color.pipe";
50
- import * as i36 from "./pipes/unescape-curly-braces.pipe";
51
- import * as i37 from "./components/empty-state/empty-state.component";
31
+ import * as i17 from "./icon/icon.component";
32
+ import * as i18 from "./components/icon-scale/icon-scale.component";
33
+ import * as i19 from "./linkify/linkify.pipe";
34
+ import * as i20 from "./linkify/unlinkify.pipe";
35
+ import * as i21 from "./pipes/lx-time-ago.pipe";
36
+ import * as i22 from "./pipes/lx-translate.pipe";
37
+ import * as i23 from "./pipes/markdown.pipe";
38
+ import * as i24 from "./pipes/nbsp.pipe";
39
+ import * as i25 from "./pipes/lx-is-uuid.pipe";
40
+ import * as i26 from "./components/stepper/stepper.component";
41
+ import * as i27 from "./components/spinner/spinner.component";
42
+ import * as i28 from "./components/table/table.component";
43
+ import * as i29 from "./components/table/table-header/table-header.component";
44
+ import * as i30 from "./components/tiny-spinner/tiny-spinner.component";
45
+ import * as i31 from "./tooltip/tooltip.directive";
46
+ import * as i32 from "./pipes/translation-after.pipe";
47
+ import * as i33 from "./pipes/translation-before.pipe";
48
+ import * as i34 from "./pipes/translation-between.pipe";
49
+ import * as i35 from "./pipes/sort.pipe";
50
+ import * as i36 from "./pipes/contrast-color.pipe";
51
+ import * as i37 from "./pipes/unescape-curly-braces.pipe";
52
+ import * as i38 from "./components/empty-state/empty-state.component";
52
53
  export declare const CORE_MODULE_EXPORTS: (typeof TinySpinnerComponent | typeof EllipsisComponent | typeof StepperComponent | typeof TableHeaderComponent | typeof AutocloseDirective | typeof AutofocusDirective | typeof CustomDatePipe | typeof LxTimeAgo | typeof LxTranslatePipe | typeof TranslationBeforePipe | typeof TranslationAfterPipe | typeof TranslationBetweenPipe | typeof TooltipDirective)[];
53
54
  export declare class LxCoreUiModule {
54
55
  static ɵfac: i0.ɵɵFactoryDeclaration<LxCoreUiModule, never>;
55
- static ɵmod: i0.ɵɵNgModuleDeclaration<LxCoreUiModule, never, [typeof i1.TranslateModule, typeof i2.AfterViewInitDirective, typeof i3.AutocloseDirective, typeof i4.AutofocusDirective, typeof i5.CounterComponent, typeof i6.BadgeComponent, typeof i7.BannerComponent, typeof i8.ButtonComponent, typeof i9.ButtonGroupComponent, typeof i10.BrPipe, typeof i11.CardComponent, typeof i12.CollapsibleComponent, typeof i13.CustomDatePipe, typeof i14.EllipsisComponent, typeof i15.HighlightRangePipe, typeof i16.HighlightTermPipe, typeof i17.IconScaleComponent, typeof i18.LxLinkifyPipe, typeof i19.LxUnlinkifyPipe, typeof i20.LxTimeAgo, typeof i21.LxTranslatePipe, typeof i22.MarkdownPipe, typeof i23.NbspPipe, typeof i24.LxIsUuidPipe, typeof i25.StepperComponent, typeof i26.SpinnerComponent, typeof i27.TableComponent, typeof i28.TableHeaderComponent, typeof i29.TinySpinnerComponent, typeof i30.TooltipDirective, typeof i31.TranslationAfterPipe, typeof i32.TranslationBeforePipe, typeof i33.TranslationBetweenPipe, typeof i34.SortPipe, typeof i35.ContrastColorPipe, typeof i36.UnescapeCurlyBracesPipe, typeof i37.EmptyStateComponent], [typeof i2.AfterViewInitDirective, typeof i3.AutocloseDirective, typeof i4.AutofocusDirective, typeof i6.BadgeComponent, typeof i5.CounterComponent, typeof i7.BannerComponent, typeof i8.ButtonComponent, typeof i10.BrPipe, typeof i9.ButtonGroupComponent, typeof i11.CardComponent, typeof i13.CustomDatePipe, typeof i14.EllipsisComponent, typeof i15.HighlightRangePipe, typeof i16.HighlightTermPipe, typeof i17.IconScaleComponent, typeof i18.LxLinkifyPipe, typeof i19.LxUnlinkifyPipe, typeof i20.LxTimeAgo, typeof i21.LxTranslatePipe, typeof i22.MarkdownPipe, typeof i23.NbspPipe, typeof i24.LxIsUuidPipe, typeof i25.StepperComponent, typeof i26.SpinnerComponent, typeof i27.TableComponent, typeof i28.TableHeaderComponent, typeof i29.TinySpinnerComponent, typeof i30.TooltipDirective, typeof i31.TranslationAfterPipe, typeof i32.TranslationBeforePipe, typeof i33.TranslationBetweenPipe, typeof i12.CollapsibleComponent, typeof i34.SortPipe, typeof i35.ContrastColorPipe, typeof i36.UnescapeCurlyBracesPipe, typeof i37.EmptyStateComponent]>;
56
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LxCoreUiModule, never, [typeof i1.TranslateModule, typeof i2.AfterViewInitDirective, typeof i3.AutocloseDirective, typeof i4.AutofocusDirective, typeof i5.CounterComponent, typeof i6.BadgeComponent, typeof i7.BannerComponent, typeof i8.ButtonComponent, typeof i9.ButtonGroupComponent, typeof i10.BrPipe, typeof i11.CardComponent, typeof i12.CollapsibleComponent, typeof i13.CustomDatePipe, typeof i14.EllipsisComponent, typeof i15.HighlightRangePipe, typeof i16.HighlightTermPipe, typeof i17.IconComponent, typeof i18.IconScaleComponent, typeof i19.LxLinkifyPipe, typeof i20.LxUnlinkifyPipe, typeof i21.LxTimeAgo, typeof i22.LxTranslatePipe, typeof i23.MarkdownPipe, typeof i24.NbspPipe, typeof i25.LxIsUuidPipe, typeof i26.StepperComponent, typeof i27.SpinnerComponent, typeof i28.TableComponent, typeof i29.TableHeaderComponent, typeof i30.TinySpinnerComponent, typeof i31.TooltipDirective, typeof i32.TranslationAfterPipe, typeof i33.TranslationBeforePipe, typeof i34.TranslationBetweenPipe, typeof i35.SortPipe, typeof i36.ContrastColorPipe, typeof i37.UnescapeCurlyBracesPipe, typeof i38.EmptyStateComponent], [typeof i2.AfterViewInitDirective, typeof i3.AutocloseDirective, typeof i4.AutofocusDirective, typeof i6.BadgeComponent, typeof i5.CounterComponent, typeof i7.BannerComponent, typeof i8.ButtonComponent, typeof i10.BrPipe, typeof i9.ButtonGroupComponent, typeof i11.CardComponent, typeof i13.CustomDatePipe, typeof i14.EllipsisComponent, typeof i15.HighlightRangePipe, typeof i16.HighlightTermPipe, typeof i17.IconComponent, typeof i18.IconScaleComponent, typeof i19.LxLinkifyPipe, typeof i20.LxUnlinkifyPipe, typeof i21.LxTimeAgo, typeof i22.LxTranslatePipe, typeof i23.MarkdownPipe, typeof i24.NbspPipe, typeof i25.LxIsUuidPipe, typeof i26.StepperComponent, typeof i27.SpinnerComponent, typeof i28.TableComponent, typeof i29.TableHeaderComponent, typeof i30.TinySpinnerComponent, typeof i31.TooltipDirective, typeof i32.TranslationAfterPipe, typeof i33.TranslationBeforePipe, typeof i34.TranslationBetweenPipe, typeof i12.CollapsibleComponent, typeof i35.SortPipe, typeof i36.ContrastColorPipe, typeof i37.UnescapeCurlyBracesPipe, typeof i38.EmptyStateComponent]>;
56
57
  static ɵinj: i0.ɵɵInjectorDeclaration<LxCoreUiModule>;
57
58
  }
@@ -1,6 +1,6 @@
1
1
  import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
- import { KeyboardSelectDirective } from '../components/keyboard-select.directive';
3
+ import type { KeyboardSelectDirective } from '../components/keyboard-select.directive';
4
4
  import { DropdownItem } from '../models/dropdown-item.interface';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SelectableItemDirective implements OnDestroy, DropdownItem, OnInit, OnChanges {
@@ -37,39 +37,38 @@ import * as i14 from "./components/date-input/date-input.component";
37
37
  import * as i15 from "./pipes/filter-selection.pipe";
38
38
  import * as i16 from "./pipes/filter-term.pipe";
39
39
  import * as i17 from "./components/form-error/form-error.component";
40
- import * as i18 from "./components/icon/icon.component";
41
- import * as i19 from "./directives/keyboard-action-source.directive";
42
- import * as i20 from "./directives/mark-invalid.directive";
43
- import * as i21 from "./components/multi-select/multi-select.component";
44
- import * as i22 from "./components/option/option.component";
45
- import * as i23 from "./components/option-group/option-group.component";
46
- import * as i24 from "./components/option-group-dropdown/option-group-dropdown.component";
47
- import * as i25 from "./components/options-dropdown/options-dropdown.component";
48
- import * as i26 from "./components/options-sub-dropdown/options-sub-dropdown.component";
49
- import * as i27 from "./components/cdk-options-dropdown/cdk-options-dropdown.component";
50
- import * as i28 from "./components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component";
51
- import * as i29 from "./components/picker/picker.component";
52
- import * as i30 from "./components/picker-option/picker-option.component";
53
- import * as i31 from "./components/picker/picker-trigger.directive";
54
- import * as i32 from "./components/pill-list/pill-list.component";
55
- import * as i33 from "./components/pill-item/pill-item.component";
56
- import * as i34 from "./components/responsive-input/responsive-input.component";
57
- import * as i35 from "./directives/selectable-item.directive";
58
- import * as i36 from "./directives/selected-option.directive";
59
- import * as i37 from "./directives/select-dropdown.directive";
60
- import * as i38 from "./components/single-select/single-select.component";
61
- import * as i39 from "./components/switch/switch.component";
62
- import * as i40 from "./components/sorting-dropdown/sorting-dropdown.component";
63
- import * as i41 from "./components/sorting-dropdown-trigger/sorting-dropdown-trigger.component";
64
- import * as i42 from "./components/input/input.component";
65
- import * as i43 from "./pipes/format-number.pipe";
66
- import * as i44 from "./directives/form-error.directive";
67
- import * as i45 from "./components/error-message/error-message.component";
68
- import * as i46 from "./directives/form-submit.directive";
69
- import * as i47 from "./directives/contenteditable.directive";
40
+ import * as i18 from "./directives/keyboard-action-source.directive";
41
+ import * as i19 from "./directives/mark-invalid.directive";
42
+ import * as i20 from "./components/multi-select/multi-select.component";
43
+ import * as i21 from "./components/option/option.component";
44
+ import * as i22 from "./components/option-group/option-group.component";
45
+ import * as i23 from "./components/option-group-dropdown/option-group-dropdown.component";
46
+ import * as i24 from "./components/options-dropdown/options-dropdown.component";
47
+ import * as i25 from "./components/options-sub-dropdown/options-sub-dropdown.component";
48
+ import * as i26 from "./components/cdk-options-dropdown/cdk-options-dropdown.component";
49
+ import * as i27 from "./components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component";
50
+ import * as i28 from "./components/picker/picker.component";
51
+ import * as i29 from "./components/picker-option/picker-option.component";
52
+ import * as i30 from "./components/picker/picker-trigger.directive";
53
+ import * as i31 from "./components/pill-list/pill-list.component";
54
+ import * as i32 from "./components/pill-item/pill-item.component";
55
+ import * as i33 from "./components/responsive-input/responsive-input.component";
56
+ import * as i34 from "./directives/selectable-item.directive";
57
+ import * as i35 from "./directives/selected-option.directive";
58
+ import * as i36 from "./directives/select-dropdown.directive";
59
+ import * as i37 from "./components/single-select/single-select.component";
60
+ import * as i38 from "./components/switch/switch.component";
61
+ import * as i39 from "./components/sorting-dropdown/sorting-dropdown.component";
62
+ import * as i40 from "./components/sorting-dropdown-trigger/sorting-dropdown-trigger.component";
63
+ import * as i41 from "./components/input/input.component";
64
+ import * as i42 from "./pipes/format-number.pipe";
65
+ import * as i43 from "./directives/form-error.directive";
66
+ import * as i44 from "./components/error-message/error-message.component";
67
+ import * as i45 from "./directives/form-submit.directive";
68
+ import * as i46 from "./directives/contenteditable.directive";
70
69
  export declare const FORMS_MODULE_EXPORTS: (typeof SelectableItemDirective | typeof KeyboardActionSourceDirective | typeof OptionComponent | typeof CdkOptionsDropdownComponent | typeof CdkOptionsSubDropdownComponent | typeof MarkInvalidDirective | typeof CurrencyInputComponent | typeof DateInputComponent | typeof LxDragAndDropListModule | typeof InputComponent | typeof MultiSelectComponent | typeof OptionsDropdownComponent | typeof OptionsSubDropdownComponent | typeof PickerOptionComponent | typeof PickerTriggerDirective | typeof PickerComponent | typeof SingleSelectComponent | typeof ContenteditableDirective | typeof FormSubmitDirective | typeof FormErrorDirective | typeof FormatNumberPipe)[];
71
70
  export declare class LxFormsModule {
72
71
  static ɵfac: i0.ɵɵFactoryDeclaration<LxFormsModule, never>;
73
- static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.TranslateModule, typeof i4.DatepickerUiModule, typeof i5.InfiniteScrollModule, typeof i6.ClipboardModule, typeof i7.OverlayModule, typeof i8.LxDragAndDropListModule, typeof i9.BasicDropdownComponent, typeof i10.BasicDropdownItemComponent, typeof i11.BreadcrumbComponent, typeof i12.CurrencyInputComponent, typeof i13.CurrencySymbolComponent, typeof i14.DateInputComponent, typeof i15.FilterSelectionPipe, typeof i16.FilterTermPipe, typeof i17.FormErrorComponent, typeof i18.IconComponent, typeof i19.KeyboardActionSourceDirective, typeof i20.MarkInvalidDirective, typeof i21.MultiSelectComponent, typeof i22.OptionComponent, typeof i23.OptionGroupComponent, typeof i24.OptionGroupDropdownComponent, typeof i25.OptionsDropdownComponent, typeof i26.OptionsSubDropdownComponent, typeof i27.CdkOptionsDropdownComponent, typeof i28.CdkOptionsSubDropdownComponent, typeof i29.PickerComponent, typeof i30.PickerOptionComponent, typeof i31.PickerTriggerDirective, typeof i32.PillListComponent, typeof i33.PillItemComponent, typeof i34.ResponsiveInputComponent, typeof i35.SelectableItemDirective, typeof i36.SelectedOptionDirective, typeof i37.SelectDropdownDirective, typeof i38.SingleSelectComponent, typeof i39.SwitchComponent, typeof i40.SortingDropdownComponent, typeof i41.SortingDropdownTriggerComponent, typeof i42.InputComponent, typeof i43.FormatNumberPipe, typeof i44.FormErrorDirective, typeof i45.ErrorMessageComponent, typeof i46.FormSubmitDirective, typeof i47.ContenteditableDirective], [typeof i9.BasicDropdownComponent, typeof i10.BasicDropdownItemComponent, typeof i11.BreadcrumbComponent, typeof i12.CurrencyInputComponent, typeof i13.CurrencySymbolComponent, typeof i14.DateInputComponent, typeof i15.FilterSelectionPipe, typeof i16.FilterTermPipe, typeof i17.FormErrorComponent, typeof i18.IconComponent, typeof i19.KeyboardActionSourceDirective, typeof i20.MarkInvalidDirective, typeof i21.MultiSelectComponent, typeof i22.OptionComponent, typeof i23.OptionGroupComponent, typeof i24.OptionGroupDropdownComponent, typeof i25.OptionsDropdownComponent, typeof i26.OptionsSubDropdownComponent, typeof i27.CdkOptionsDropdownComponent, typeof i28.CdkOptionsSubDropdownComponent, typeof i29.PickerComponent, typeof i30.PickerOptionComponent, typeof i31.PickerTriggerDirective, typeof i32.PillListComponent, typeof i33.PillItemComponent, typeof i34.ResponsiveInputComponent, typeof i35.SelectableItemDirective, typeof i37.SelectDropdownDirective, typeof i36.SelectedOptionDirective, typeof i38.SingleSelectComponent, typeof i39.SwitchComponent, typeof i40.SortingDropdownComponent, typeof i41.SortingDropdownTriggerComponent, typeof i43.FormatNumberPipe, typeof i44.FormErrorDirective, typeof i46.FormSubmitDirective, typeof i45.ErrorMessageComponent, typeof i8.LxDragAndDropListModule, typeof i47.ContenteditableDirective, typeof i42.InputComponent]>;
72
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.TranslateModule, typeof i4.DatepickerUiModule, typeof i5.InfiniteScrollModule, typeof i6.ClipboardModule, typeof i7.OverlayModule, typeof i8.LxDragAndDropListModule, typeof i9.BasicDropdownComponent, typeof i10.BasicDropdownItemComponent, typeof i11.BreadcrumbComponent, typeof i12.CurrencyInputComponent, typeof i13.CurrencySymbolComponent, typeof i14.DateInputComponent, typeof i15.FilterSelectionPipe, typeof i16.FilterTermPipe, typeof i17.FormErrorComponent, typeof i18.KeyboardActionSourceDirective, typeof i19.MarkInvalidDirective, typeof i20.MultiSelectComponent, typeof i21.OptionComponent, typeof i22.OptionGroupComponent, typeof i23.OptionGroupDropdownComponent, typeof i24.OptionsDropdownComponent, typeof i25.OptionsSubDropdownComponent, typeof i26.CdkOptionsDropdownComponent, typeof i27.CdkOptionsSubDropdownComponent, typeof i28.PickerComponent, typeof i29.PickerOptionComponent, typeof i30.PickerTriggerDirective, typeof i31.PillListComponent, typeof i32.PillItemComponent, typeof i33.ResponsiveInputComponent, typeof i34.SelectableItemDirective, typeof i35.SelectedOptionDirective, typeof i36.SelectDropdownDirective, typeof i37.SingleSelectComponent, typeof i38.SwitchComponent, typeof i39.SortingDropdownComponent, typeof i40.SortingDropdownTriggerComponent, typeof i41.InputComponent, typeof i42.FormatNumberPipe, typeof i43.FormErrorDirective, typeof i44.ErrorMessageComponent, typeof i45.FormSubmitDirective, typeof i46.ContenteditableDirective], [typeof i9.BasicDropdownComponent, typeof i10.BasicDropdownItemComponent, typeof i11.BreadcrumbComponent, typeof i12.CurrencyInputComponent, typeof i13.CurrencySymbolComponent, typeof i14.DateInputComponent, typeof i15.FilterSelectionPipe, typeof i16.FilterTermPipe, typeof i17.FormErrorComponent, typeof i18.KeyboardActionSourceDirective, typeof i19.MarkInvalidDirective, typeof i20.MultiSelectComponent, typeof i21.OptionComponent, typeof i22.OptionGroupComponent, typeof i23.OptionGroupDropdownComponent, typeof i24.OptionsDropdownComponent, typeof i25.OptionsSubDropdownComponent, typeof i26.CdkOptionsDropdownComponent, typeof i27.CdkOptionsSubDropdownComponent, typeof i28.PickerComponent, typeof i29.PickerOptionComponent, typeof i30.PickerTriggerDirective, typeof i31.PillListComponent, typeof i32.PillItemComponent, typeof i33.ResponsiveInputComponent, typeof i34.SelectableItemDirective, typeof i36.SelectDropdownDirective, typeof i35.SelectedOptionDirective, typeof i37.SingleSelectComponent, typeof i38.SwitchComponent, typeof i39.SortingDropdownComponent, typeof i40.SortingDropdownTriggerComponent, typeof i42.FormatNumberPipe, typeof i43.FormErrorDirective, typeof i45.FormSubmitDirective, typeof i44.ErrorMessageComponent, typeof i8.LxDragAndDropListModule, typeof i46.ContenteditableDirective, typeof i41.InputComponent]>;
74
73
  static ɵinj: i0.ɵɵInjectorDeclaration<LxFormsModule>;
75
74
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.591",
3
+ "version": "0.4.593",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {