asv-hlps 1.3.97 → 1.3.99

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,7 @@
1
+ import AuthTagGrp from "@/auth/models/AuthTagGrp";
1
2
  import NaAc from "../../shared/models/NaAc";
2
3
  import AuthTag from "./AuthTag";
3
4
  export default interface AuthTagCat extends NaAc {
5
+ grp: AuthTagGrp;
4
6
  tags: AuthTag[];
5
7
  }
@@ -0,0 +1,3 @@
1
+ import NaCoAc from "../../shared/models/NaCoAc";
2
+ export default interface AuthTagGrp extends NaCoAc {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export default interface AdditModalFormProps<T = any> {
2
+ tob?: T;
3
+ onSubmitForm: (value: any) => void;
4
+ onCancelForm: any;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -1,5 +1,7 @@
1
+ import AuthTagGrp from "@/auth/models/AuthTagGrp";
1
2
  import NaAc from "../../shared/models/NaAc";
2
3
  import AuthTag from "./AuthTag";
3
4
  export default interface AuthTagCat extends NaAc {
5
+ grp: AuthTagGrp;
4
6
  tags: AuthTag[];
5
7
  }
@@ -0,0 +1,3 @@
1
+ import NaCoAc from "../../shared/models/NaCoAc";
2
+ export default interface AuthTagGrp extends NaCoAc {
3
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export default interface AdditModalFormProps<T = any> {
2
+ tob?: T;
3
+ onSubmitForm: (value: any) => void;
4
+ onCancelForm: any;
5
+ }
@@ -0,0 +1 @@
1
+ export {};
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.3.97",
3
+ "version": "1.3.99",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -17,11 +17,11 @@
17
17
  "license": "ISC",
18
18
  "devDependencies": {
19
19
  "@types/bcryptjs": "^2.4.6",
20
- "@types/express": "^4.17.21",
21
- "@types/lodash": "^4.17.7",
20
+ "@types/express": "^5.0.0",
21
+ "@types/lodash": "^4.17.13",
22
22
  "@types/pdfmake": "^0.2.9",
23
23
  "@types/randomatic": "^3.1.5",
24
- "@types/react": "^18.3.8"
24
+ "@types/react": "^18.3.12"
25
25
  },
26
26
  "dependencies": {
27
27
  "axios": "^1.7.7",
@@ -29,13 +29,13 @@
29
29
  "class-validator": "^0.14.1",
30
30
  "classnames": "^2.5.1",
31
31
  "dayjs": "^1.11.13",
32
- "express": "^4.21.0",
32
+ "express": "^4.21.1",
33
33
  "jwt-decode": "^4.0.0",
34
34
  "lodash": "^4.17.21",
35
- "pdfmake": "^0.2.13",
35
+ "pdfmake": "^0.2.15",
36
36
  "randomatic": "^3.1.1",
37
37
  "typeorm": "^0.3.20",
38
- "typescript": "^5.6.2",
38
+ "typescript": "^5.6.3",
39
39
  "yup": "^1.4.0"
40
40
  }
41
41
  }