@leanix/components 0.4.499 → 0.4.500
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/esm2022/lib/core-ui/core-ui.module.mjs +40 -39
- package/esm2022/lib/forms-ui/components/form-error/form-error.component.mjs +3 -2
- package/esm2022/lib/forms-ui/forms-ui.module.mjs +46 -45
- package/esm2022/lib/modal-ui/modal.module.mjs +3 -2
- package/fesm2022/leanix-components.mjs +89 -85
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/core-ui/core-ui.module.d.ts +14 -0
- package/lib/forms-ui/forms-ui.module.d.ts +22 -0
- package/lib/modal-ui/modal.module.d.ts +3 -0
- package/package.json +1 -1
@@ -1,3 +1,16 @@
|
|
1
|
+
import { EllipsisComponent } from './components/ellipsis/ellipsis.component';
|
2
|
+
import { StepperComponent } from './components/stepper/stepper.component';
|
3
|
+
import { TableHeaderComponent } from './components/table/table-header/table-header.component';
|
4
|
+
import { TinySpinnerComponent } from './components/tiny-spinner/tiny-spinner.component';
|
5
|
+
import { AutocloseDirective } from './directives/autoclose.directive';
|
6
|
+
import { AutofocusDirective } from './directives/autofocus.directive';
|
7
|
+
import { CustomDatePipe } from './pipes/custom-date.pipe';
|
8
|
+
import { LxTimeAgo } from './pipes/lx-time-ago.pipe';
|
9
|
+
import { LxTranslatePipe } from './pipes/lx-translate.pipe';
|
10
|
+
import { TranslationAfterPipe } from './pipes/translation-after.pipe';
|
11
|
+
import { TranslationBeforePipe } from './pipes/translation-before.pipe';
|
12
|
+
import { TranslationBetweenPipe } from './pipes/translation-between.pipe';
|
13
|
+
import { TooltipDirective } from './tooltip/tooltip.directive';
|
1
14
|
import * as i0 from "@angular/core";
|
2
15
|
import * as i1 from "@ngx-translate/core";
|
3
16
|
import * as i2 from "./directives/after-view-init.directive";
|
@@ -36,6 +49,7 @@ import * as i34 from "./pipes/sort.pipe";
|
|
36
49
|
import * as i35 from "./pipes/contrast-color.pipe";
|
37
50
|
import * as i36 from "./pipes/unescape-curly-braces.pipe";
|
38
51
|
import * as i37 from "./components/empty-state/empty-state.component";
|
52
|
+
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)[];
|
39
53
|
export declare class LxCoreUiModule {
|
40
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<LxCoreUiModule, never>;
|
41
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]>;
|
@@ -1,3 +1,24 @@
|
|
1
|
+
import { CdkOptionsDropdownComponent } from './components/cdk-options-dropdown/cdk-options-dropdown.component';
|
2
|
+
import { CdkOptionsSubDropdownComponent } from './components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component';
|
3
|
+
import { CurrencyInputComponent } from './components/currency/currency-input.component';
|
4
|
+
import { DateInputComponent } from './components/date-input/date-input.component';
|
5
|
+
import { LxDragAndDropListModule } from './components/drag-and-drop-list/drag-and-drop-list.module';
|
6
|
+
import { InputComponent } from './components/input/input.component';
|
7
|
+
import { MultiSelectComponent } from './components/multi-select/multi-select.component';
|
8
|
+
import { OptionComponent } from './components/option/option.component';
|
9
|
+
import { OptionsDropdownComponent } from './components/options-dropdown/options-dropdown.component';
|
10
|
+
import { OptionsSubDropdownComponent } from './components/options-sub-dropdown/options-sub-dropdown.component';
|
11
|
+
import { PickerOptionComponent } from './components/picker-option/picker-option.component';
|
12
|
+
import { PickerTriggerDirective } from './components/picker/picker-trigger.directive';
|
13
|
+
import { PickerComponent } from './components/picker/picker.component';
|
14
|
+
import { SingleSelectComponent } from './components/single-select/single-select.component';
|
15
|
+
import { ContenteditableDirective } from './directives/contenteditable.directive';
|
16
|
+
import { FormErrorDirective } from './directives/form-error.directive';
|
17
|
+
import { FormSubmitDirective } from './directives/form-submit.directive';
|
18
|
+
import { KeyboardActionSourceDirective } from './directives/keyboard-action-source.directive';
|
19
|
+
import { MarkInvalidDirective } from './directives/mark-invalid.directive';
|
20
|
+
import { SelectableItemDirective } from './directives/selectable-item.directive';
|
21
|
+
import { FormatNumberPipe } from './pipes/format-number.pipe';
|
1
22
|
import * as i0 from "@angular/core";
|
2
23
|
import * as i1 from "@angular/common";
|
3
24
|
import * as i2 from "@angular/forms";
|
@@ -48,6 +69,7 @@ import * as i46 from "./directives/form-error.directive";
|
|
48
69
|
import * as i47 from "./components/error-message/error-message.component";
|
49
70
|
import * as i48 from "./directives/form-submit.directive";
|
50
71
|
import * as i49 from "./directives/contenteditable.directive";
|
72
|
+
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)[];
|
51
73
|
export declare class LxFormsModule {
|
52
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<LxFormsModule, never>;
|
53
75
|
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.ExpandedDropdownComponent, typeof i11.BasicDropdownItemComponent, typeof i12.BreadcrumbComponent, typeof i13.CurrencyInputComponent, typeof i14.CurrencySymbolComponent, typeof i15.DateInputComponent, typeof i16.FilterSelectionPipe, typeof i17.FilterTermPipe, typeof i18.FormErrorComponent, typeof i19.IconComponent, typeof i20.KeyboardActionSourceDirective, typeof i21.MarkInvalidDirective, typeof i22.MultiSelectComponent, typeof i23.OptionComponent, typeof i24.OptionGroupComponent, typeof i25.OptionGroupDropdownComponent, typeof i26.OptionsDropdownComponent, typeof i27.OptionsSubDropdownComponent, typeof i28.CdkOptionsDropdownComponent, typeof i29.CdkOptionsSubDropdownComponent, typeof i30.PickerComponent, typeof i31.PickerOptionComponent, typeof i32.PickerTriggerDirective, typeof i33.PillListComponent, typeof i34.PillItemComponent, typeof i35.ResponsiveInputComponent, typeof i36.SelectableItemDirective, typeof i37.SelectedOptionDirective, typeof i38.SelectDropdownDirective, typeof i39.SingleSelectComponent, typeof i40.SelectListComponent, typeof i41.SwitchComponent, typeof i42.SortingDropdownComponent, typeof i43.SortingDropdownTriggerComponent, typeof i44.InputComponent, typeof i45.FormatNumberPipe, typeof i46.FormErrorDirective, typeof i47.ErrorMessageComponent, typeof i48.FormSubmitDirective, typeof i49.ContenteditableDirective], [typeof i9.BasicDropdownComponent, typeof i10.ExpandedDropdownComponent, typeof i11.BasicDropdownItemComponent, typeof i12.BreadcrumbComponent, typeof i13.CurrencyInputComponent, typeof i14.CurrencySymbolComponent, typeof i15.DateInputComponent, typeof i16.FilterSelectionPipe, typeof i17.FilterTermPipe, typeof i18.FormErrorComponent, typeof i19.IconComponent, typeof i20.KeyboardActionSourceDirective, typeof i21.MarkInvalidDirective, typeof i22.MultiSelectComponent, typeof i23.OptionComponent, typeof i24.OptionGroupComponent, typeof i25.OptionGroupDropdownComponent, typeof i26.OptionsDropdownComponent, typeof i27.OptionsSubDropdownComponent, typeof i28.CdkOptionsDropdownComponent, typeof i29.CdkOptionsSubDropdownComponent, typeof i30.PickerComponent, typeof i31.PickerOptionComponent, typeof i32.PickerTriggerDirective, typeof i33.PillListComponent, typeof i34.PillItemComponent, typeof i35.ResponsiveInputComponent, typeof i36.SelectableItemDirective, typeof i38.SelectDropdownDirective, typeof i37.SelectedOptionDirective, typeof i40.SelectListComponent, typeof i39.SingleSelectComponent, typeof i41.SwitchComponent, typeof i42.SortingDropdownComponent, typeof i43.SortingDropdownTriggerComponent, typeof i45.FormatNumberPipe, typeof i46.FormErrorDirective, typeof i48.FormSubmitDirective, typeof i47.ErrorMessageComponent, typeof i8.LxDragAndDropListModule, typeof i49.ContenteditableDirective, typeof i44.InputComponent]>;
|
@@ -1,3 +1,5 @@
|
|
1
|
+
import { ModalComponent } from './components/modal/modal.component';
|
2
|
+
import { ModalContentDirective } from './directives/modal-content.directive';
|
1
3
|
import * as i0 from "@angular/core";
|
2
4
|
import * as i1 from "@angular/common";
|
3
5
|
import * as i2 from "@angular/cdk/portal";
|
@@ -8,6 +10,7 @@ import * as i6 from "./components/modal/modal.component";
|
|
8
10
|
import * as i7 from "./components/modal-header/modal-header.component";
|
9
11
|
import * as i8 from "./components/modal-footer/modal-footer.component";
|
10
12
|
import * as i9 from "./directives/modal-content.directive";
|
13
|
+
export declare const MODAL_MODULE_EXPORTS: (typeof ModalContentDirective | typeof ModalComponent)[];
|
11
14
|
export declare class LxModalModule {
|
12
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<LxModalModule, never>;
|
13
16
|
static ɵmod: i0.ɵɵNgModuleDeclaration<LxModalModule, never, [typeof i1.CommonModule, typeof i2.PortalModule, typeof i3.OverlayModule, typeof i4.A11yModule, typeof i5.TranslateModule, typeof i6.ModalComponent, typeof i7.ModalHeaderComponent, typeof i8.ModalFooterComponent, typeof i9.ModalContentDirective], [typeof i6.ModalComponent, typeof i7.ModalHeaderComponent, typeof i8.ModalFooterComponent, typeof i9.ModalContentDirective]>;
|