fixa-admin 0.0.9 → 0.0.11

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.
@@ -54,7 +54,7 @@ export declare class GridComponent implements OnInit {
54
54
  set column(v: ColumnItems[]);
55
55
  cellDoubleClicked(e: CellDoubleClickedEvent): void;
56
56
  handleClick(item: ToolbarItems): void;
57
- refresh(): void;
57
+ refresh(purge?: boolean): void;
58
58
  onGridReady(params: any): void;
59
59
  advancedFilter(): void;
60
60
  private getRouteToNode;
@@ -0,0 +1,16 @@
1
+ import { Renderer2, ElementRef } from '@angular/core';
2
+ import { SharedService } from '../services/index.api';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ImageLoaderDirective {
5
+ loader: string;
6
+ onErrorSrc: string;
7
+ private renderer;
8
+ private el;
9
+ private _http;
10
+ constructor(loader: string, onErrorSrc: string, renderer: Renderer2, el: ElementRef, _http: SharedService);
11
+ _imageSrc: string;
12
+ get imageSrc(): string;
13
+ set imageSrc(v: string);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageLoaderDirective, [{ attribute: "loader"; }, { attribute: "onErrorSrc"; }, null, null, null]>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ImageLoaderDirective, "[imageLoader]", never, { "imageSrc": { "alias": "imageSrc"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
@@ -1,3 +1,4 @@
1
1
  export * from './char-input.directive';
2
2
  export * from './numeric-input.directive';
3
3
  export * from './mask.directive';
4
+ export * from './image.directive';
@@ -98,7 +98,8 @@ export declare enum FilterOperator {
98
98
  truncGreaterThanEqual = "TRUNC_GTE",
99
99
  truncGreaterThan = "TRUNC_GT",
100
100
  truncLessThanOr = "TRUNC_LT",
101
- truncLessThanOrEqual = "TRUNC_LTE"
101
+ truncLessThanOrEqual = "TRUNC_LTE",
102
+ between = "BETWEEN"
102
103
  }
103
104
  export declare class SelectModel {
104
105
  items: SelectItemsModel[];
@@ -1,8 +1,14 @@
1
1
  import { MenuItems } from '../models/shared.model';
2
+ import { Observable } from 'rxjs';
3
+ import { HttpClient } from '@angular/common/http';
2
4
  import * as i0 from "@angular/core";
3
5
  export declare class SharedService {
4
- constructor();
6
+ private _http;
7
+ constructor(environment: any, _http: HttpClient);
8
+ environment: any;
5
9
  menuItems: MenuItems[];
10
+ upload(file: File): Observable<string>;
11
+ getFile(url: string): Promise<string>;
6
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedService, never>;
7
13
  static ɵprov: i0.ɵɵInjectableDeclaration<SharedService>;
8
14
  }
@@ -12,30 +12,31 @@ import * as i8 from "./components/grid/filter/date-filter.component";
12
12
  import * as i9 from "./directive/numeric-input.directive";
13
13
  import * as i10 from "./directive/char-input.directive";
14
14
  import * as i11 from "./directive/mask.directive";
15
- import * as i12 from "./pipes/date.pipe";
16
- import * as i13 from "@angular/router";
17
- import * as i14 from "@angular/common/http";
18
- import * as i15 from "@angular/common";
19
- import * as i16 from "@ag-grid-community/angular";
20
- import * as i17 from "@angular/cdk/menu";
21
- import * as i18 from "ng-zorro-antd/layout";
22
- import * as i19 from "ng-zorro-antd/menu";
23
- import * as i20 from "ng-zorro-antd/icon";
24
- import * as i21 from "ng-zorro-antd/button";
25
- import * as i22 from "ng-zorro-antd/modal";
26
- import * as i23 from "ng-zorro-antd/message";
27
- import * as i24 from "ng-zorro-antd/tooltip";
28
- import * as i25 from "ng-zorro-antd/tabs";
29
- import * as i26 from "ng-zorro-antd/tree-view";
30
- import * as i27 from "ng-zorro-antd/spin";
31
- import * as i28 from "@angular/forms";
32
- import * as i29 from "ng-zorro-antd/input";
33
- import * as i30 from "ng-zorro-antd/form";
34
- import * as i31 from "@ngx-translate/core";
15
+ import * as i12 from "./directive/image.directive";
16
+ import * as i13 from "./pipes/date.pipe";
17
+ import * as i14 from "@angular/router";
18
+ import * as i15 from "@angular/common/http";
19
+ import * as i16 from "@angular/common";
20
+ import * as i17 from "@ag-grid-community/angular";
21
+ import * as i18 from "@angular/cdk/menu";
22
+ import * as i19 from "ng-zorro-antd/layout";
23
+ import * as i20 from "ng-zorro-antd/menu";
24
+ import * as i21 from "ng-zorro-antd/icon";
25
+ import * as i22 from "ng-zorro-antd/button";
26
+ import * as i23 from "ng-zorro-antd/modal";
27
+ import * as i24 from "ng-zorro-antd/message";
28
+ import * as i25 from "ng-zorro-antd/tooltip";
29
+ import * as i26 from "ng-zorro-antd/tabs";
30
+ import * as i27 from "ng-zorro-antd/tree-view";
31
+ import * as i28 from "ng-zorro-antd/spin";
32
+ import * as i29 from "@angular/forms";
33
+ import * as i30 from "ng-zorro-antd/input";
34
+ import * as i31 from "ng-zorro-antd/form";
35
+ import * as i32 from "@ngx-translate/core";
35
36
  export declare function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader;
36
37
  export declare function initializeApp(): Promise<any>;
37
38
  export declare class SharedModule {
38
39
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
39
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.MasterLayout, typeof i2.BlankLayout, typeof i3.GridComponent, typeof i4.ActionsCellRenderer, typeof i5.CaptchaComponent, typeof i6.MapComponent, typeof i7.SpinnerComponent, typeof i8.DateFilter, typeof i9.EnglishNumberInputDirective, typeof i10.CharInputDirective, typeof i11.MaskDirective, typeof i12.JDatePipe], [typeof i13.RouterModule, typeof i14.HttpClientModule, typeof i15.CommonModule, typeof i16.AgGridModule, typeof i14.HttpClientModule, typeof i17.CdkMenuModule, typeof i18.NzLayoutModule, typeof i19.NzMenuModule, typeof i20.NzIconModule, typeof i21.NzButtonModule, typeof i22.NzModalModule, typeof i23.NzMessageModule, typeof i24.NzToolTipModule, typeof i25.NzTabsModule, typeof i26.NzTreeViewModule, typeof i27.NzSpinModule, typeof i28.FormsModule, typeof i29.NzInputModule, typeof i30.NzFormModule, typeof i31.TranslateModule], [typeof i1.MasterLayout, typeof i2.BlankLayout, typeof i3.GridComponent, typeof i4.ActionsCellRenderer, typeof i5.CaptchaComponent, typeof i6.MapComponent, typeof i7.SpinnerComponent, typeof i8.DateFilter, typeof i9.EnglishNumberInputDirective, typeof i10.CharInputDirective, typeof i11.MaskDirective, typeof i12.JDatePipe]>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.MasterLayout, typeof i2.BlankLayout, typeof i3.GridComponent, typeof i4.ActionsCellRenderer, typeof i5.CaptchaComponent, typeof i6.MapComponent, typeof i7.SpinnerComponent, typeof i8.DateFilter, typeof i9.EnglishNumberInputDirective, typeof i10.CharInputDirective, typeof i11.MaskDirective, typeof i12.ImageLoaderDirective, typeof i13.JDatePipe], [typeof i14.RouterModule, typeof i15.HttpClientModule, typeof i16.CommonModule, typeof i17.AgGridModule, typeof i15.HttpClientModule, typeof i18.CdkMenuModule, typeof i19.NzLayoutModule, typeof i20.NzMenuModule, typeof i21.NzIconModule, typeof i22.NzButtonModule, typeof i23.NzModalModule, typeof i24.NzMessageModule, typeof i25.NzToolTipModule, typeof i26.NzTabsModule, typeof i27.NzTreeViewModule, typeof i28.NzSpinModule, typeof i29.FormsModule, typeof i30.NzInputModule, typeof i31.NzFormModule, typeof i32.TranslateModule], [typeof i1.MasterLayout, typeof i2.BlankLayout, typeof i3.GridComponent, typeof i4.ActionsCellRenderer, typeof i5.CaptchaComponent, typeof i6.MapComponent, typeof i7.SpinnerComponent, typeof i8.DateFilter, typeof i9.EnglishNumberInputDirective, typeof i10.CharInputDirective, typeof i11.MaskDirective, typeof i12.ImageLoaderDirective, typeof i13.JDatePipe]>;
40
41
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
41
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fixa-admin",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",