imm-element-ui 0.0.9 → 0.1.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.
Files changed (34) hide show
  1. package/esm2022/lib/crumb-action/crumb-action.component.mjs +22 -28
  2. package/esm2022/lib/form/form/form.component.mjs +3 -1
  3. package/esm2022/lib/grid/grid/grid.component.mjs +4 -3
  4. package/esm2022/lib/import/import.component.mjs +39 -22
  5. package/esm2022/lib/page-form/page-form.component.mjs +18 -3
  6. package/esm2022/lib/page-grid-list/page-grid-list.component.mjs +5 -26
  7. package/esm2022/lib/search/mock-data.mjs +21 -13
  8. package/esm2022/lib/search/pop-date/pop-date.component.mjs +10 -7
  9. package/esm2022/lib/search/pop-self/pop-self.component.mjs +16 -12
  10. package/esm2022/lib/search/pop-tree/pop-tree.component.mjs +3 -3
  11. package/esm2022/lib/search/search/search.component.mjs +18 -7
  12. package/esm2022/lib/search/search-tip/search-tip.component.mjs +19 -7
  13. package/esm2022/lib/search/search-utils.mjs +16 -41
  14. package/esm2022/lib/search/text-panel/text-panel.component.mjs +12 -8
  15. package/esm2022/lib/service/action.service.mjs +8 -2
  16. package/esm2022/lib/steps/steps.component.mjs +8 -4
  17. package/fesm2022/imm-element-ui.mjs +307 -285
  18. package/fesm2022/imm-element-ui.mjs.map +1 -1
  19. package/lib/crumb-action/crumb-action.component.d.ts +6 -5
  20. package/lib/grid/grid/grid.component.d.ts +1 -1
  21. package/lib/import/import.component.d.ts +12 -4
  22. package/lib/page-form/page-form.component.d.ts +1 -0
  23. package/lib/page-grid-list/page-grid-list.component.d.ts +3 -10
  24. package/lib/search/mock-data.d.ts +36 -7
  25. package/lib/search/pop-date/pop-date.component.d.ts +5 -7
  26. package/lib/search/pop-self/pop-self.component.d.ts +4 -6
  27. package/lib/search/search/search.component.d.ts +9 -4
  28. package/lib/search/search-tip/search-tip.component.d.ts +6 -3
  29. package/lib/search/search-utils.d.ts +2 -0
  30. package/lib/search/text-panel/text-panel.component.d.ts +5 -6
  31. package/lib/service/action.service.d.ts +5 -4
  32. package/lib/steps/steps.component.d.ts +3 -1
  33. package/package.json +1 -1
  34. package/src/lib/import/import.component.scss +4 -4
@@ -1,11 +1,12 @@
1
1
  import { OnInit, TemplateRef } from '@angular/core';
2
- import { UserHistoryService, HistoryItem } from '../../public-api';
2
+ import { UserHistoryService, HistoryItem, ActionService } from '../../public-api';
3
3
  import { Router } from '@angular/router';
4
4
  import { Popover } from 'primeng/popover';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class CrumbActionComponent implements OnInit {
7
7
  userHistoryService: UserHistoryService;
8
- crumbList: import("@angular/core").Signal<HistoryItem[]>;
8
+ action: ActionService;
9
+ crumbList: import("@angular/core").Signal<any>;
9
10
  crumbTitle: import("@angular/core").WritableSignal<any>;
10
11
  router: Router;
11
12
  isNew: boolean;
@@ -16,12 +17,12 @@ export declare class CrumbActionComponent implements OnInit {
16
17
  listOp: Popover;
17
18
  saveEvent: import("@angular/core").OutputEmitterRef<void>;
18
19
  newUrl: import("@angular/core").InputSignal<string>;
20
+ onExport: import("@angular/core").InputSignal<Function | undefined>;
19
21
  outlined: import("@angular/core").InputSignal<boolean>;
20
22
  isList: import("@angular/core").InputSignal<boolean>;
21
23
  authLevel: import("@angular/core").InputSignal<number>;
22
24
  cancelEvent: import("@angular/core").OutputEmitterRef<void>;
23
25
  newBtnTemplateRef: TemplateRef<any> | undefined;
24
- listActEvent: import("@angular/core").OutputEmitterRef<string>;
25
26
  listOpItems: {
26
27
  label: string;
27
28
  type: string;
@@ -36,7 +37,7 @@ export declare class CrumbActionComponent implements OnInit {
36
37
  back(item: any): void;
37
38
  toggle(event: any): void;
38
39
  toggleListOp(event: any): void;
39
- listAct(name: string): void;
40
+ listAct(type: string): void;
40
41
  static ɵfac: i0.ɵɵFactoryDeclaration<CrumbActionComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "newUrl": { "alias": "newUrl"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "isList": { "alias": "isList"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "listActEvent": "listActEvent"; }, ["newBtnTemplateRef"], never, true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "newUrl": { "alias": "newUrl"; "required": false; "isSignal": true; }; "onExport": { "alias": "onExport"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "isList": { "alias": "isList"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; }, ["newBtnTemplateRef"], never, true, never>;
42
43
  }
@@ -244,7 +244,7 @@ export declare class GridComponent {
244
244
  searchPrm: import("@angular/core").ModelSignal<Search>;
245
245
  deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
246
246
  addEmit: import("@angular/core").OutputEmitterRef<void>;
247
- addType: import("@angular/core").InputSignal<"handle" | "select" | undefined>;
247
+ addType: import("@angular/core").InputSignal<"select" | "handle" | undefined>;
248
248
  selectData: import("@angular/core").InputSignal<any[] | undefined>;
249
249
  showAct: import("@angular/core").InputSignal<boolean>;
250
250
  actPos: import("@angular/core").InputSignal<"top" | "bottom">;
@@ -1,5 +1,6 @@
1
1
  import { FileUpload } from 'primeng/fileupload';
2
2
  import { HttpClient } from '@angular/common/http';
3
+ import { ActionService } from '../service/action.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export interface ImportOptions {
5
6
  title?: string;
@@ -8,15 +9,22 @@ export interface ImportOptions {
8
9
  }
9
10
  export declare class ImportComponent {
10
11
  private http;
12
+ private action;
11
13
  fileUpload: FileUpload;
12
14
  visible: import("@angular/core").ModelSignal<boolean>;
13
- options: import("@angular/core").InputSignal<ImportOptions | undefined>;
14
- finishEvent: import("@angular/core").OutputEmitterRef<any>;
15
+ fileName: import("@angular/core").InputSignal<string | undefined>;
16
+ funcName: import("@angular/core").InputSignal<string | undefined>;
17
+ orgField: import("@angular/core").InputSignal<string | undefined>;
18
+ modelName: import("@angular/core").InputSignal<string>;
15
19
  disabled: boolean;
16
- constructor(http: HttpClient);
20
+ depts: any[];
21
+ dept: any;
22
+ constructor(http: HttpClient, action: ActionService);
23
+ ngOnDestroy(): void;
24
+ initDepts(): void;
17
25
  cancel(): void;
18
26
  download(): void;
19
27
  upload(item: any): import("rxjs").Subscription;
20
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ImportComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<ImportComponent, "app-import", never, { "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, { "visible": "visibleChange"; "finishEvent": "finishEvent"; }, never, never, true, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImportComponent, "app-import", never, { "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "funcName": { "alias": "funcName"; "required": false; "isSignal": true; }; "orgField": { "alias": "orgField"; "required": false; "isSignal": true; }; "modelName": { "alias": "modelName"; "required": false; "isSignal": true; }; }, { "visible": "visibleChange"; }, never, never, true, never>;
22
30
  }
@@ -42,6 +42,7 @@ export declare class PageFormComponent extends AmComponent implements OnInit {
42
42
  dataSourceShow(): void;
43
43
  goRun(data: any): void;
44
44
  authClick(btn: any): void;
45
+ statusChange(value: any): void;
45
46
  static ɵfac: i0.ɵɵFactoryDeclaration<PageFormComponent, never>;
46
47
  static ɵcmp: i0.ɵɵComponentDeclaration<PageFormComponent, "app-page-form", never, { "gridList": { "alias": "gridList"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": true; "isSignal": true; }; "getPrmInput": { "alias": "getPrmInput"; "required": true; "isSignal": true; }; "statusSteps": { "alias": "statusSteps"; "required": false; "isSignal": true; }; "statusKey": { "alias": "statusKey"; "required": false; "isSignal": true; }; "hrefBtnList": { "alias": "hrefBtnList"; "required": false; "isSignal": true; }; "setTitle": { "alias": "setTitle"; "required": false; "isSignal": true; }; "actionList": { "alias": "actionList"; "required": false; "isSignal": true; }; "modelLog": { "alias": "modelLog"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
47
48
  }
@@ -1,19 +1,12 @@
1
- import { OnInit } from '@angular/core';
2
- import { ImportOptions } from '../import/import.component';
3
1
  import { GridOptions } from '../grid/grid/grid.component';
4
2
  import { AmComponent } from '../am/am.component';
5
3
  import * as i0 from "@angular/core";
6
- export declare class PageGridListComponent extends AmComponent implements OnInit {
7
- newUrl: import("@angular/core").InputSignal<string>;
4
+ export declare class PageGridListComponent extends AmComponent {
5
+ params: import("@angular/core").InputSignal<any>;
8
6
  actions: import("@angular/core").InputSignal<any[]>;
9
7
  gridOptions: import("@angular/core").InputSignal<GridOptions | undefined>;
10
- importOptions: import("@angular/core").InputSignal<ImportOptions | undefined>;
11
- orgField: import("@angular/core").InputSignal<string>;
12
- importVisible: boolean;
13
8
  authLevel: import("@angular/core").InputSignal<number>;
14
9
  constructor();
15
- ngOnInit(): void;
16
- listEvent(e: any): void;
17
10
  static ɵfac: i0.ɵɵFactoryDeclaration<PageGridListComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<PageGridListComponent, "app-page-grid-list", never, { "newUrl": { "alias": "newUrl"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "gridOptions": { "alias": "gridOptions"; "required": false; "isSignal": true; }; "importOptions": { "alias": "importOptions"; "required": false; "isSignal": true; }; "orgField": { "alias": "orgField"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageGridListComponent, "app-page-grid-list", never, { "params": { "alias": "params"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "gridOptions": { "alias": "gridOptions"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
19
12
  }
@@ -1,20 +1,49 @@
1
- export declare const operatorList: {
1
+ export declare const operatorList: ({
2
2
  operator: string;
3
3
  short: string;
4
4
  label: string;
5
- }[];
6
- export declare const dateOperList: {
5
+ i18nKey?: undefined;
6
+ } | {
7
7
  operator: string;
8
8
  short: string;
9
9
  label: string;
10
- }[];
11
- export declare const textOperList: {
10
+ i18nKey: string;
11
+ })[];
12
+ export declare const dateOperList: ({
12
13
  operator: string;
13
14
  short: string;
14
15
  label: string;
15
- }[];
16
- export declare const numberOperList: {
16
+ i18nKey: string;
17
+ } | {
18
+ operator: string;
19
+ short: string;
20
+ label: string;
21
+ i18nKey?: undefined;
22
+ })[];
23
+ export declare const textOperList: ({
24
+ operator: string;
25
+ short: string;
26
+ label: string;
27
+ i18nKey?: undefined;
28
+ } | {
29
+ operator: string;
30
+ short: string;
31
+ label: string;
32
+ i18nKey: string;
33
+ })[];
34
+ export declare const numberOperListNoRange: {
17
35
  operator: string;
18
36
  short: string;
19
37
  label: string;
20
38
  }[];
39
+ export declare const numberOperList: ({
40
+ operator: string;
41
+ short: string;
42
+ label: string;
43
+ i18nKey?: undefined;
44
+ } | {
45
+ operator: string;
46
+ short: string;
47
+ label: string;
48
+ i18nKey: string;
49
+ })[];
@@ -1,22 +1,20 @@
1
1
  import { SearchItem } from '../search/search.component';
2
2
  import { DatePipe } from '@angular/common';
3
3
  import { ActionService } from '../../service/action.service';
4
+ import { I18nService } from '../../service/i18n.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class PopDateComponent {
6
7
  private datePipe;
7
8
  private action;
9
+ private i18n;
8
10
  item: import("@angular/core").InputSignal<SearchItem>;
9
- view: import("@angular/core").Signal<"year" | "month" | "date">;
11
+ view: import("@angular/core").Signal<"date" | "year" | "month">;
10
12
  modelName: import("@angular/core").InputSignal<string | undefined>;
11
13
  isActive: boolean;
12
14
  value: any;
13
15
  selectionMode: any;
14
- dateOperList: {
15
- operator: string;
16
- short: string;
17
- label: string;
18
- }[];
19
- constructor(datePipe: DatePipe, action: ActionService);
16
+ dateOperList: any[];
17
+ constructor(datePipe: DatePipe, action: ActionService, i18n: I18nService);
20
18
  onLabelClick(event: MouseEvent): void;
21
19
  onOperatorChange(event: any): void;
22
20
  onDateChange(event: any): void;
@@ -1,10 +1,12 @@
1
1
  import { SearchItem } from '../search/search.component';
2
2
  import { ActionService } from '../../service/action.service';
3
3
  import { DatePipe } from '@angular/common';
4
+ import { I18nService } from '../../service/i18n.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class PopSelfComponent {
6
7
  private datePipe;
7
8
  private action;
9
+ private i18n;
8
10
  searchItems: import("@angular/core").InputSignal<SearchItem[] | undefined>;
9
11
  searchItem: SearchItem;
10
12
  fieldList: any[];
@@ -12,15 +14,11 @@ export declare class PopSelfComponent {
12
14
  self: any;
13
15
  isActive: boolean;
14
16
  view: any;
15
- constructor(datePipe: DatePipe, action: ActionService);
17
+ constructor(datePipe: DatePipe, action: ActionService, i18n: I18nService);
16
18
  onLabelClick(event: MouseEvent): void;
17
19
  onFieldChange(event: any): void;
18
20
  onOperatorChange(event: any): void;
19
- getOperatorList(): {
20
- operator: string;
21
- short: string;
22
- label: string;
23
- }[];
21
+ getOperatorList(): any[];
24
22
  handleDefaultOperator(): void;
25
23
  onReset(): void;
26
24
  onOk(): void;
@@ -4,6 +4,7 @@ import { ActionService } from '../../service/action.service';
4
4
  import { Search } from '../../am/am.component';
5
5
  import { Popover } from 'primeng/popover';
6
6
  import { Observable } from 'rxjs';
7
+ import { I18nService } from '../../service/i18n.service';
7
8
  import * as i0 from "@angular/core";
8
9
  export type SearchType = 'text' | 'list' | 'select' | 'date' | 'number' | 'tree';
9
10
  export interface SearchItemOption {
@@ -19,13 +20,14 @@ export interface SearchItem {
19
20
  format?: string;
20
21
  filterType?: SearchType;
21
22
  options?: SearchItemOption[];
23
+ cascade?: boolean;
24
+ cascadeKey?: string;
25
+ multiple?: boolean;
26
+ group?: boolean;
22
27
  value?: any;
23
28
  from?: string;
24
29
  to?: string;
25
30
  operator?: string;
26
- group?: boolean;
27
- cascade?: boolean;
28
- cascadeKey?: string;
29
31
  cascadeFunc?: (value: any) => Observable<SearchItemOption[]>;
30
32
  [propsName: string]: any;
31
33
  }
@@ -35,6 +37,7 @@ export interface SearchOptions {
35
37
  }
36
38
  export declare class SearchComponent {
37
39
  private action;
40
+ private i18n;
38
41
  searchRef: ElementRef;
39
42
  popPanel: Popover;
40
43
  textPanel: Popover;
@@ -45,7 +48,9 @@ export declare class SearchComponent {
45
48
  marginLeft: string;
46
49
  searchStr: string;
47
50
  isActive: boolean;
48
- constructor(action: ActionService);
51
+ reload: boolean;
52
+ constructor(action: ActionService, i18n: I18nService);
53
+ ngOnInit(): void;
49
54
  ngOnDestroy(): void;
50
55
  onFocus(event: any, searchRef: any): void;
51
56
  onDropDownClick(event: any, searchRef: any): void;
@@ -1,21 +1,24 @@
1
1
  import { SearchItem, SearchItemOption } from '../search/search.component';
2
2
  import { ColumnFilter } from '../../am/am.component';
3
3
  import { ActionService } from '../../service/action.service';
4
+ import { I18nService } from '../../service/i18n.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class SearchTipComponent {
6
7
  private action;
8
+ private i18n;
7
9
  groups: import("@angular/core").InputSignal<string[] | undefined>;
8
10
  columnFilter: import("@angular/core").InputSignal<ColumnFilter | undefined>;
9
11
  searchItem: import("@angular/core").InputSignal<SearchItem | undefined>;
10
12
  flattenTreeOptions?: any[];
11
- constructor(action: ActionService);
13
+ operatorList: any[];
14
+ constructor(action: ActionService, i18n: I18nService);
12
15
  onGroupTipClose(): void;
13
16
  onSearchTipClose(): void;
14
17
  isNotFirstCheckedOption(option: SearchItemOption, item: SearchItem): boolean;
15
18
  formatSelectGroups(selects: SearchItem[]): string;
16
- operatorLabel(opera: string): string;
19
+ operatorLabel(opera: string): any;
17
20
  labelForList(): (string | undefined)[] | undefined;
18
- labelForSelect(): string;
21
+ labelForSelect(): string | (string | undefined)[] | undefined;
19
22
  labelForTree(): any;
20
23
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchTipComponent, never>;
21
24
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchTipComponent, "search-tip", never, { "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "columnFilter": { "alias": "columnFilter"; "required": false; "isSignal": true; }; "searchItem": { "alias": "searchItem"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -1,5 +1,6 @@
1
1
  import { SearchItem } from './search/search.component';
2
2
  import { Search, ColumnFilter } from '../am/am.component';
3
+ import { I18nService } from '../service/i18n.service';
3
4
  export declare const searchUtils: {
4
5
  flattenTree: (nodes: any[]) => any[];
5
6
  transferFilter: (item: SearchItem) => ColumnFilter | undefined;
@@ -7,4 +8,5 @@ export declare const searchUtils: {
7
8
  concatGroup: (search: Search | undefined, item: SearchItem) => Search;
8
9
  extractSearchItems: (columnDefs: any, searchItems?: SearchItem[]) => SearchItem[];
9
10
  cascadeColumnFilters: (searchClear: string, columnFilters: ColumnFilter[], searchItems: SearchItem[]) => ColumnFilter[];
11
+ translate: (operatorList: any[], i18n: I18nService) => any[];
10
12
  };
@@ -1,19 +1,18 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { SearchItem } from '../search/search.component';
3
3
  import { ActionService } from '../../service/action.service';
4
+ import { I18nService } from '../../service/i18n.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class TextPanelComponent {
6
7
  private action;
8
+ private i18n;
7
9
  strItemClick: EventEmitter<void>;
8
10
  searchItems: import("@angular/core").InputSignal<SearchItem[] | undefined>;
9
11
  searchStr: import("@angular/core").InputSignal<string | undefined>;
10
12
  textItems: SearchItem[];
11
- textOperList: {
12
- operator: string;
13
- short: string;
14
- label: string;
15
- }[];
16
- constructor(action: ActionService);
13
+ textOperList: any[];
14
+ numberOperList: any[];
15
+ constructor(action: ActionService, i18n: I18nService);
17
16
  onStrItemClick(item: SearchItem, event: Event): void;
18
17
  onTextOperatorClick(item: SearchItem, event: Event): void;
19
18
  static ɵfac: i0.ɵɵFactoryDeclaration<TextPanelComponent, never>;
@@ -4,9 +4,8 @@ import { FormField } from '../form/form-field/form-field';
4
4
  import { Router } from '@angular/router';
5
5
  import { Page } from '../grid/pager/pager.component';
6
6
  import * as i0 from "@angular/core";
7
- export interface ActionType {
8
- type?: string;
9
- rows?: any[];
7
+ export interface Action {
8
+ type: string;
10
9
  }
11
10
  export interface SearchRow {
12
11
  key?: string;
@@ -25,10 +24,10 @@ export declare class ActionService {
25
24
  searchClear: import("@angular/core").WritableSignal<String | undefined>;
26
25
  groupClear: import("@angular/core").WritableSignal<Boolean | undefined>;
27
26
  selectedRows: import("@angular/core").WritableSignal<any[]>;
28
- actionType: import("@angular/core").WritableSignal<ActionType>;
29
27
  page: import("@angular/core").WritableSignal<Page | undefined>;
30
28
  fieldLabelAction: import("@angular/core").WritableSignal<FieldLabelAction | undefined>;
31
29
  fieldAction: import("@angular/core").WritableSignal<FormField | undefined>;
30
+ action: import("@angular/core").WritableSignal<Action | undefined>;
32
31
  constructor(router: Router);
33
32
  clearSearch(modelName: string | undefined): void;
34
33
  setSearch(search: Search, modelName: string | undefined): void;
@@ -49,6 +48,8 @@ export declare class ActionService {
49
48
  getFieldLabelAction(): FieldLabelAction | undefined;
50
49
  setFieldAction(field: FormField | undefined): void;
51
50
  getFieldAction(): FormField | undefined;
51
+ setAction(action: Action | undefined): void;
52
+ getAction(): Action | undefined;
52
53
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionService, never>;
53
54
  static ɵprov: i0.ɵɵInjectableDeclaration<ActionService>;
54
55
  }
@@ -9,8 +9,10 @@ export declare class StepsComponent {
9
9
  steps: import("@angular/core").InputSignal<Step[]>;
10
10
  current: import("@angular/core").InputSignal<number | undefined>;
11
11
  i18n: I18nService;
12
+ change: import("@angular/core").OutputEmitterRef<number>;
12
13
  constructor();
13
14
  getClass(i: number): string;
15
+ changeStatus(step: any): void;
14
16
  static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "custom-steps", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "custom-steps", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, never, true, never>;
16
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imm-element-ui",
3
- "version": "0.0.9",
3
+ "version": "0.1.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"
@@ -1,10 +1,10 @@
1
- @import 'styles';
2
- :host ::ng-deep {
3
- .p-fileupload-basic {
4
- justify-content: left;
1
+ ::ng-deep {
2
+ .p-file-import .p-fileupload-basic {
3
+ justify-content: start;
5
4
  }
6
5
  }
7
6
  .btn-link {
8
7
  color: var(--p-primary-color);
9
8
  padding: 0.5rem;
10
9
  }
10
+