atr-components 2.1.3 → 2.1.4

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 (56) hide show
  1. package/atr-public-api.d.ts +0 -2
  2. package/core/base/atr-common.d.ts +3 -1
  3. package/esm2022/atr-components.module.mjs +5 -5
  4. package/esm2022/atr-public-api.mjs +1 -3
  5. package/esm2022/core/auth/auth.guard.mjs +4 -4
  6. package/esm2022/core/base/atr-common.mjs +1 -1
  7. package/esm2022/core/directive/Infinite-scroll.directive.mjs +4 -4
  8. package/esm2022/core/directive/debounce-click.directive.mjs +4 -4
  9. package/esm2022/core/directive/error-img.directive.mjs +4 -4
  10. package/esm2022/core/directive/hq-spin.directive.mjs +4 -4
  11. package/esm2022/core/directive/role.directive.mjs +4 -4
  12. package/esm2022/core/interceptor/base.interceptor.mjs +4 -4
  13. package/esm2022/core/ngz-module/cus-zorro-antd.module.mjs +5 -5
  14. package/esm2022/core/pipe/china-num.pipe.mjs +4 -4
  15. package/esm2022/core/pipe/count.pipe.mjs +4 -4
  16. package/esm2022/core/pipe/day.pipe.mjs +4 -4
  17. package/esm2022/core/pipe/defaultVal.pipe.mjs +4 -4
  18. package/esm2022/core/pipe/dicts.pipe.mjs +5 -5
  19. package/esm2022/core/pipe/image-pipe.pipe.mjs +4 -4
  20. package/esm2022/core/pipe/is-empty.pipe.mjs +4 -4
  21. package/esm2022/core/pipe/is-not-empty.pipe.mjs +4 -4
  22. package/esm2022/core/pipe/oss.pipe.mjs +4 -4
  23. package/esm2022/core/pipe/ossStatic.pipe.mjs +4 -4
  24. package/esm2022/core/pipe/pipe-module.module.mjs +52 -12
  25. package/esm2022/core/pipe/remove-html.pipe.mjs +4 -4
  26. package/esm2022/core/pipe/safe-compute.pipe.mjs +4 -4
  27. package/esm2022/core/pipe/safe-html.pipe.mjs +4 -4
  28. package/esm2022/core/pipe/safe-url.pipe.mjs +4 -4
  29. package/esm2022/core/services/dict/dict.service.mjs +5 -5
  30. package/esm2022/core/services/http.service.mjs +4 -4
  31. package/esm2022/core/services/menu.service.mjs +4 -4
  32. package/esm2022/core/services/upload-oss.service.mjs +4 -4
  33. package/esm2022/lib/shared/atr-shared.module.mjs +5 -5
  34. package/esm2022/lib/shared/echarts/echarts.component.mjs +4 -4
  35. package/esm2022/lib/shared/form/form.component.mjs +21 -13
  36. package/esm2022/lib/shared/img-canvas/img-canvas.component.mjs +4 -4
  37. package/esm2022/lib/shared/local-upload/local-upload.component.mjs +4 -4
  38. package/esm2022/lib/shared/quill-editor/quill-editor.component.mjs +4 -4
  39. package/esm2022/lib/shared/select-icons/select-icons.component.mjs +4 -4
  40. package/esm2022/lib/shared/select-tree/select-tree.component.mjs +4 -4
  41. package/esm2022/lib/shared/service/busi.service.mjs +4 -4
  42. package/esm2022/lib/shared/share.service.mjs +4 -4
  43. package/esm2022/lib/shared/table/table-form-item/table-form-item.component.mjs +4 -4
  44. package/esm2022/lib/shared/table/table-td/table-td.component.mjs +4 -4
  45. package/esm2022/lib/shared/table/table.component.mjs +4 -4
  46. package/esm2022/lib/shared/upload/upload.component.mjs +4 -4
  47. package/esm2022/lib/shared/video/video.component.mjs +4 -4
  48. package/esm2022/lib/shared/view-form/view-form.component.mjs +4 -4
  49. package/fesm2022/atr-components.mjs +204 -185
  50. package/fesm2022/atr-components.mjs.map +1 -1
  51. package/lib/shared/form/form.component.d.ts +1 -0
  52. package/package.json +1 -1
  53. package/esm2022/lib/hello/hello.component.mjs +0 -15
  54. package/esm2022/lib/hello/hello.module.mjs +0 -20
  55. package/lib/hello/hello.component.d.ts +0 -8
  56. package/lib/hello/hello.module.d.ts +0 -8
@@ -43,6 +43,7 @@ export declare class AtrFormComponent implements OnInit {
43
43
  getFormValue(): any;
44
44
  getFormVaild(): any;
45
45
  showTime(item: any): any;
46
+ defNumFormat: (value: number) => string;
46
47
  static ɵfac: i0.ɵɵFactoryDeclaration<AtrFormComponent, never>;
47
48
  static ɵcmp: i0.ɵɵComponentDeclaration<AtrFormComponent, "atr-form", never, { "formOpts": { "alias": "formOpts"; "required": false; }; "viewTitle": { "alias": "viewTitle"; "required": false; }; }, { "formAction": "formAction"; "uploadAction": "uploadAction"; "quillChange": "quillChange"; }, never, ["*", "*"], false, never>;
48
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atr-components",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^17.0.9",
6
6
  "echarts": "^5.4.3"
@@ -1,15 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class HelloComponent {
4
- constructor() {
5
- }
6
- ngOnInit() {
7
- }
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: HelloComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: HelloComponent, selector: "atr-hello", ngImport: i0, template: "<p>hello works!</p>\n", styles: [""] }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: HelloComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'atr-hello', template: "<p>hello works!</p>\n" }]
14
- }], ctorParameters: () => [] });
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVsbG8uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50cy9zcmMvbGliL2hlbGxvL2hlbGxvLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvbXBvbmVudHMvc3JjL2xpYi9oZWxsby9oZWxsby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFTLE1BQU0sZUFBZSxDQUFDOztBQVFoRCxNQUFNLE9BQU8sY0FBYztJQUV6QjtJQUNBLENBQUM7SUFFRCxRQUFRO0lBQ1IsQ0FBQzs4R0FOVSxjQUFjO2tHQUFkLGNBQWMsaURDUjNCLHVCQUNBOzsyRkRPYSxjQUFjO2tCQUwxQixTQUFTOytCQUNFLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgT25Jbml0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7YXRyX3N0YXRpY19kYXRhc30gZnJvbSBcIi4uLy4uL2NvcmUvYmFzZS9hdHItY29tbW9uXCI7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F0ci1oZWxsbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9oZWxsby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2hlbGxvLmNvbXBvbmVudC5jc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBIZWxsb0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG59XG4iLCI8cD5oZWxsbyB3b3JrcyE8L3A+XG4iXX0=
@@ -1,20 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { HelloComponent } from "./hello.component";
4
- import * as i0 from "@angular/core";
5
- export class HelloModule {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: HelloModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.6", ngImport: i0, type: HelloModule, declarations: [HelloComponent], imports: [CommonModule], exports: [HelloComponent] }); }
8
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: HelloModule, imports: [CommonModule] }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: HelloModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- declarations: [HelloComponent],
14
- imports: [
15
- CommonModule
16
- ],
17
- exports: [HelloComponent]
18
- }]
19
- }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVsbG8ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tcG9uZW50cy9zcmMvbGliL2hlbGxvL2hlbGxvLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0sbUJBQW1CLENBQUM7O0FBV2pELE1BQU0sT0FBTyxXQUFXOzhHQUFYLFdBQVc7K0dBQVgsV0FBVyxpQkFOUCxjQUFjLGFBRTNCLFlBQVksYUFFTCxjQUFjOytHQUVaLFdBQVcsWUFKcEIsWUFBWTs7MkZBSUgsV0FBVztrQkFQdkIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyxjQUFjLENBQUM7b0JBQzlCLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3FCQUNiO29CQUNELE9BQU8sRUFBQyxDQUFDLGNBQWMsQ0FBQztpQkFDekIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7SGVsbG9Db21wb25lbnR9IGZyb20gXCIuL2hlbGxvLmNvbXBvbmVudFwiO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbSGVsbG9Db21wb25lbnRdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlXG4gIF0sXG4gIGV4cG9ydHM6W0hlbGxvQ29tcG9uZW50XVxufSlcbmV4cG9ydCBjbGFzcyBIZWxsb01vZHVsZSB7IH1cbiJdfQ==
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class HelloComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<HelloComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<HelloComponent, "atr-hello", never, {}, {}, never, never, false, never>;
8
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./hello.component";
3
- import * as i2 from "@angular/common";
4
- export declare class HelloModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<HelloModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<HelloModule, [typeof i1.HelloComponent], [typeof i2.CommonModule], [typeof i1.HelloComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<HelloModule>;
8
- }