lib-portal-angular 0.0.55 → 0.0.57

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,12 +19,13 @@ import * as i17 from "./search-input/search-input.component";
19
19
  import * as i18 from "./app-background/app-background.component";
20
20
  import * as i19 from "./basic-registration/basic-registration.component";
21
21
  import * as i20 from "./custom-switch/custom-switch.component";
22
- import * as i21 from "@angular/common";
23
- import * as i22 from "@angular/forms";
24
- import * as i23 from "@ng-select/ng-select";
25
- import * as i24 from "../icons/lucide-icons.module";
22
+ import * as i21 from "./search-customer/search-customer.component";
23
+ import * as i22 from "@angular/common";
24
+ import * as i23 from "@angular/forms";
25
+ import * as i24 from "@ng-select/ng-select";
26
+ import * as i25 from "../icons/lucide-icons.module";
26
27
  export declare class ComponentsModule {
27
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
28
- static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.ButtonComponent, typeof i2.CardComponent, typeof i3.InputComponent, typeof i4.CheckboxComponent, typeof i5.TextareaComponent, typeof i6.SelectComponent, typeof i7.RadioComponent, typeof i8.MultiSelectComponent, typeof i9.DataTableComponent, typeof i10.CodeHighlightComponent, typeof i11.BadgeComponent, typeof i12.AlertComponent, typeof i13.ConfirmationComponent, typeof i14.AutofocusDirective, typeof i15.CustomPaginationComponent, typeof i16.TreeNodeComponent, typeof i17.SearchInputComponent, typeof i18.AppBackgroundComponent, typeof i19.BasicRegistrationComponent, typeof i20.CustomSwitchComponent], [typeof i21.CommonModule, typeof i22.FormsModule, typeof i22.ReactiveFormsModule, typeof i23.NgSelectModule, typeof i24.LucideIconsModule], [typeof i1.ButtonComponent, typeof i2.CardComponent, typeof i3.InputComponent, typeof i4.CheckboxComponent, typeof i5.TextareaComponent, typeof i6.SelectComponent, typeof i7.RadioComponent, typeof i8.MultiSelectComponent, typeof i22.FormsModule, typeof i22.ReactiveFormsModule, typeof i23.NgSelectModule, typeof i9.DataTableComponent, typeof i10.CodeHighlightComponent, typeof i11.BadgeComponent, typeof i12.AlertComponent, typeof i13.ConfirmationComponent, typeof i15.CustomPaginationComponent, typeof i16.TreeNodeComponent, typeof i17.SearchInputComponent, typeof i24.LucideIconsModule, typeof i18.AppBackgroundComponent, typeof i19.BasicRegistrationComponent, typeof i20.CustomSwitchComponent]>;
29
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.ButtonComponent, typeof i2.CardComponent, typeof i3.InputComponent, typeof i4.CheckboxComponent, typeof i5.TextareaComponent, typeof i6.SelectComponent, typeof i7.RadioComponent, typeof i8.MultiSelectComponent, typeof i9.DataTableComponent, typeof i10.CodeHighlightComponent, typeof i11.BadgeComponent, typeof i12.AlertComponent, typeof i13.ConfirmationComponent, typeof i14.AutofocusDirective, typeof i15.CustomPaginationComponent, typeof i16.TreeNodeComponent, typeof i17.SearchInputComponent, typeof i18.AppBackgroundComponent, typeof i19.BasicRegistrationComponent, typeof i20.CustomSwitchComponent, typeof i21.SearchCustomerComponent], [typeof i22.CommonModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.NgSelectModule, typeof i25.LucideIconsModule], [typeof i1.ButtonComponent, typeof i2.CardComponent, typeof i3.InputComponent, typeof i4.CheckboxComponent, typeof i5.TextareaComponent, typeof i6.SelectComponent, typeof i7.RadioComponent, typeof i8.MultiSelectComponent, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.NgSelectModule, typeof i9.DataTableComponent, typeof i10.CodeHighlightComponent, typeof i11.BadgeComponent, typeof i12.AlertComponent, typeof i13.ConfirmationComponent, typeof i15.CustomPaginationComponent, typeof i16.TreeNodeComponent, typeof i17.SearchInputComponent, typeof i25.LucideIconsModule, typeof i18.AppBackgroundComponent, typeof i19.BasicRegistrationComponent, typeof i20.CustomSwitchComponent, typeof i21.SearchCustomerComponent]>;
29
30
  static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
30
31
  }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SearchCustomerComponent {
4
+ placeholder: string;
5
+ id: string;
6
+ disabled: boolean;
7
+ readonly: boolean;
8
+ autofocus: boolean;
9
+ searchTerm: EventEmitter<string>;
10
+ onSearch(event: Event): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchCustomerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchCustomerComponent, "argenta-search-customer", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "searchTerm": "searchTerm"; }, never, never, false, never>;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lib-portal-angular",
3
- "version": "0.0.55",
3
+ "version": "0.0.57",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './lib/components/search-customer/search-customer.component';
1
2
  export * from './lib/components/custom-switch/custom-switch.component';
2
3
  export * from './lib/components/alert/alert.component';
3
4
  export * from './lib/components/app-background/app-background.component';