fmode-ng 0.0.13 → 0.0.15

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.
@@ -1,5 +1,5 @@
1
1
  export declare class MarkdownParse {
2
2
  constructor();
3
3
  parseToHTML(markdown: any): string;
4
- info(...args: any[]): void;
4
+ info(...args: any): void;
5
5
  }
@@ -1,6 +1,7 @@
1
1
  export * from "./service-fmai/fmai.service";
2
2
  export * from "./service-fmai/service-imagine";
3
3
  export * from "./service-fmai/service-chat";
4
+ export * from "./comp-markdown-preview/markdown-parse";
4
5
  export * from "./comp-markdown-preview/markdown-preview.module";
5
6
  export * from "./comp-markdown-preview/markdown-preview.component";
6
7
  export * from "./comp-markdown-preview/clipboard.service";
@@ -1,3 +1,4 @@
1
1
  export * from "./chat.service";
2
2
  export * from "./chat-class";
3
3
  export * from "./mask-list";
4
+ export * from "./utilnow.pipe";
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UtilnowPipe implements PipeTransform {
4
+ transform(value: Date, args?: any): any;
5
+ enLocale: any;
6
+ handleArgs(value: any, unit: any, args: any): any;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<UtilnowPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<UtilnowPipe, "utilnow", true>;
9
+ }
@@ -0,0 +1 @@
1
+ export * from './nova-upload.service';
@@ -21,6 +21,7 @@ export interface NovaFile {
21
21
  name: string;
22
22
  type: string;
23
23
  size: number;
24
+ md5?: string;
24
25
  }
25
26
  /**
26
27
  * NovaUploadService 上传服务
@@ -95,6 +96,7 @@ export declare class NovaUploadService {
95
96
  size: string;
96
97
  name: string;
97
98
  type: string;
99
+ md5?: string;
98
100
  }, domain: any, cateId?: any, company?: any): Promise<Parse.Object>;
99
101
  /**
100
102
  * 录像并上传
@@ -0,0 +1 @@
1
+ export declare function calcFileMd5(file: File): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmode-ng",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "author": "未来全栈",
5
5
  "license": "COPYRIGHT © 未来飞马 未来全栈 www.fmode.cn All RIGHTS RESERVED",
6
6
  "peerDependencies": {
@@ -32,7 +32,9 @@
32
32
  "jquery": "^3.7.1",
33
33
  "@awesome-cordova-plugins/diagnostic": "~6.6.0",
34
34
  "@babylonjs/core": "^7.2.1",
35
- "@babylonjs/loaders": "~7.2.1"
35
+ "@babylonjs/loaders": "~7.2.1",
36
+ "spark-md5": "^3.0.2",
37
+ "@types/spark-md5": "^3.0.4"
36
38
  },
37
39
  "dependencies": {
38
40
  "tslib": "^2.3.0"