tnp-helpers 0.0.70 → 13.0.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.
- package/app.js +2 -1
- package/browser/README.md +24 -0
- package/browser/esm2020/lib/base-component.mjs +48 -0
- package/browser/esm2020/lib/base-formly-component.mjs +124 -0
- package/browser/esm2020/lib/condition-wait.mjs +54 -0
- package/browser/esm2020/lib/constants.mjs +2 -0
- package/browser/esm2020/lib/dual-component-ctrl.mjs +116 -0
- package/browser/esm2020/lib/helpers-array-obj.mjs +81 -0
- package/browser/esm2020/lib/helpers-environment.mjs +21 -0
- package/browser/esm2020/lib/helpers-strings-regexes.mjs +49 -0
- package/browser/esm2020/lib/helpers-strings.mjs +61 -0
- package/browser/esm2020/lib/helpers.mjs +106 -0
- package/browser/esm2020/lib/index.mjs +11 -0
- package/browser/esm2020/lib/long-press.directive.mjs +106 -0
- package/browser/esm2020/lib/project.mjs +90 -0
- package/browser/esm2020/lib/resize-service.mjs +20 -0
- package/browser/esm2020/public-api.mjs +2 -0
- package/browser/esm2020/tnp-helpers.mjs +5 -0
- package/browser/fesm2015/tnp-helpers.mjs +869 -0
- package/browser/fesm2015/tnp-helpers.mjs.map +1 -0
- package/browser/fesm2020/tnp-helpers.mjs +860 -0
- package/browser/fesm2020/tnp-helpers.mjs.map +1 -0
- package/browser/{base-component.d.ts → lib/base-component.d.ts} +3 -0
- package/browser/{base-formly-component.d.ts → lib/base-formly-component.d.ts} +4 -3
- package/browser/{condition-wait.d.ts → lib/condition-wait.d.ts} +0 -0
- package/browser/{constants.d.ts → lib/constants.d.ts} +0 -0
- package/browser/{dual-component-ctrl.d.ts → lib/dual-component-ctrl.d.ts} +0 -0
- package/{helpers-array-obj.d.ts → browser/lib/helpers-array-obj.d.ts} +1 -0
- package/browser/{helpers-environment.d.ts → lib/helpers-environment.d.ts} +0 -0
- package/browser/{helpers-strings-regexes.d.ts → lib/helpers-strings-regexes.d.ts} +0 -0
- package/browser/{helpers-strings.d.ts → lib/helpers-strings.d.ts} +0 -0
- package/browser/{helpers.d.ts → lib/helpers.d.ts} +2 -4
- package/{client → browser/lib}/index.d.ts +1 -1
- package/{client → browser/lib}/long-press.directive.d.ts +3 -0
- package/browser/{project.d.ts → lib/project.d.ts} +0 -0
- package/{client → browser/lib}/resize-service.d.ts +3 -0
- package/browser/package.json +31 -0
- package/browser/public-api.d.ts +1 -0
- package/browser/tnp-helpers.d.ts +5 -0
- package/client/README.md +24 -0
- package/client/esm2020/lib/base-component.mjs +48 -0
- package/client/esm2020/lib/base-formly-component.mjs +124 -0
- package/client/esm2020/lib/condition-wait.mjs +54 -0
- package/client/esm2020/lib/constants.mjs +2 -0
- package/client/esm2020/lib/dual-component-ctrl.mjs +116 -0
- package/client/esm2020/lib/helpers-array-obj.mjs +81 -0
- package/client/esm2020/lib/helpers-environment.mjs +21 -0
- package/client/esm2020/lib/helpers-strings-regexes.mjs +49 -0
- package/client/esm2020/lib/helpers-strings.mjs +61 -0
- package/client/esm2020/lib/helpers.mjs +106 -0
- package/client/esm2020/lib/index.mjs +11 -0
- package/client/esm2020/lib/long-press.directive.mjs +106 -0
- package/client/esm2020/lib/project.mjs +90 -0
- package/client/esm2020/lib/resize-service.mjs +20 -0
- package/client/esm2020/public-api.mjs +2 -0
- package/client/esm2020/tnp-helpers.mjs +5 -0
- package/client/fesm2015/tnp-helpers.mjs +869 -0
- package/client/fesm2015/tnp-helpers.mjs.map +1 -0
- package/client/fesm2020/tnp-helpers.mjs +860 -0
- package/client/fesm2020/tnp-helpers.mjs.map +1 -0
- package/client/{base-component.d.ts → lib/base-component.d.ts} +3 -0
- package/{base-formly-component.d.ts → client/lib/base-formly-component.d.ts} +4 -3
- package/client/{condition-wait.d.ts → lib/condition-wait.d.ts} +0 -0
- package/client/{constants.d.ts → lib/constants.d.ts} +0 -0
- package/client/{dual-component-ctrl.d.ts → lib/dual-component-ctrl.d.ts} +0 -0
- package/client/{helpers-array-obj.d.ts → lib/helpers-array-obj.d.ts} +1 -0
- package/client/{helpers-environment.d.ts → lib/helpers-environment.d.ts} +0 -0
- package/client/{helpers-strings-regexes.d.ts → lib/helpers-strings-regexes.d.ts} +0 -0
- package/client/{helpers-strings.d.ts → lib/helpers-strings.d.ts} +0 -0
- package/client/{helpers.d.ts → lib/helpers.d.ts} +2 -4
- package/{browser → client/lib}/index.d.ts +1 -1
- package/{browser → client/lib}/long-press.directive.d.ts +3 -0
- package/client/{project.d.ts → lib/project.d.ts} +0 -0
- package/{resize-service.d.ts → client/lib/resize-service.d.ts} +3 -0
- package/client/package.json +25 -19
- package/client/public-api.d.ts +1 -0
- package/client/tnp-helpers.d.ts +5 -0
- package/index.d.ts +1 -11
- package/index.js +3 -21
- package/index.js.map +1 -1
- package/{base-component.d.ts → lib/base-component.d.ts} +0 -0
- package/{base-component.js → lib/base-component.js} +8 -7
- package/lib/base-component.js.map +1 -0
- package/{client → lib}/base-formly-component.d.ts +1 -3
- package/{base-formly-component.js → lib/base-formly-component.js} +46 -47
- package/lib/base-formly-component.js.map +1 -0
- package/{condition-wait.d.ts → lib/condition-wait.d.ts} +0 -0
- package/{condition-wait.js → lib/condition-wait.js} +10 -9
- package/lib/condition-wait.js.map +1 -0
- package/{constants.d.ts → lib/constants.d.ts} +0 -0
- package/{constants.js → lib/constants.js} +2 -1
- package/lib/constants.js.map +1 -0
- package/{dual-component-ctrl.d.ts → lib/dual-component-ctrl.d.ts} +0 -0
- package/{dual-component-ctrl.js → lib/dual-component-ctrl.js} +2 -1
- package/lib/dual-component-ctrl.js.map +1 -0
- package/{git-project.d.ts → lib/git-project.d.ts} +4 -3
- package/{git-project.js → lib/git-project.js} +20 -11
- package/lib/git-project.js.map +1 -0
- package/{browser → lib}/helpers-array-obj.d.ts +1 -0
- package/{helpers-array-obj.js → lib/helpers-array-obj.js} +8 -1
- package/lib/helpers-array-obj.js.map +1 -0
- package/{helpers-cli-tool.backend.d.ts → lib/helpers-cli-tool.backend.d.ts} +0 -0
- package/{helpers-cli-tool.backend.js → lib/helpers-cli-tool.backend.js} +5 -4
- package/lib/helpers-cli-tool.backend.js.map +1 -0
- package/{helpers-dependencies.backend.d.ts → lib/helpers-dependencies.backend.d.ts} +0 -0
- package/{helpers-dependencies.backend.js → lib/helpers-dependencies.backend.js} +6 -5
- package/lib/helpers-dependencies.backend.js.map +1 -0
- package/{helpers-environment.d.ts → lib/helpers-environment.d.ts} +0 -0
- package/{helpers-environment.js → lib/helpers-environment.js} +2 -1
- package/lib/helpers-environment.js.map +1 -0
- package/{helpers-file-folders.backend.d.ts → lib/helpers-file-folders.backend.d.ts} +1 -0
- package/{helpers-file-folders.backend.js → lib/helpers-file-folders.backend.js} +66 -47
- package/lib/helpers-file-folders.backend.js.map +1 -0
- package/{helpers-git.backend.d.ts → lib/helpers-git.backend.d.ts} +3 -1
- package/{helpers-git.backend.js → lib/helpers-git.backend.js} +90 -56
- package/lib/helpers-git.backend.js.map +1 -0
- package/{helpers-json5.backend.d.ts → lib/helpers-json5.backend.d.ts} +0 -0
- package/{helpers-json5.backend.js → lib/helpers-json5.backend.js} +3 -2
- package/lib/helpers-json5.backend.js.map +1 -0
- package/{helpers-morphi-framework.backend.d.ts → lib/helpers-morphi-framework.backend.d.ts} +0 -0
- package/{helpers-morphi-framework.backend.js → lib/helpers-morphi-framework.backend.js} +4 -3
- package/lib/helpers-morphi-framework.backend.js.map +1 -0
- package/{helpers-network.backend.d.ts → lib/helpers-network.backend.d.ts} +0 -0
- package/{helpers-network.backend.js → lib/helpers-network.backend.js} +2 -1
- package/lib/helpers-network.backend.js.map +1 -0
- package/{helpers-npm.backend.d.ts → lib/helpers-npm.backend.d.ts} +0 -0
- package/{helpers-npm.backend.js → lib/helpers-npm.backend.js} +2 -1
- package/lib/helpers-npm.backend.js.map +1 -0
- package/{helpers-path.backend.d.ts → lib/helpers-path.backend.d.ts} +0 -0
- package/{helpers-path.backend.js → lib/helpers-path.backend.js} +4 -3
- package/lib/helpers-path.backend.js.map +1 -0
- package/{helpers-process.backend.d.ts → lib/helpers-process.backend.d.ts} +2 -2
- package/{helpers-process.backend.js → lib/helpers-process.backend.js} +54 -53
- package/lib/helpers-process.backend.js.map +1 -0
- package/{helpers-strings-regexes.d.ts → lib/helpers-strings-regexes.d.ts} +0 -0
- package/{helpers-strings-regexes.js → lib/helpers-strings-regexes.js} +2 -1
- package/lib/helpers-strings-regexes.js.map +1 -0
- package/{helpers-strings.d.ts → lib/helpers-strings.d.ts} +0 -0
- package/{helpers-strings.js → lib/helpers-strings.js} +2 -1
- package/lib/helpers-strings.js.map +1 -0
- package/{helpers-system-terminal.backend.d.ts → lib/helpers-system-terminal.backend.d.ts} +1 -1
- package/{helpers-system-terminal.backend.js → lib/helpers-system-terminal.backend.js} +9 -8
- package/lib/helpers-system-terminal.backend.js.map +1 -0
- package/{helpers.d.ts → lib/helpers.d.ts} +6 -6
- package/{helpers.js → lib/helpers.js} +34 -30
- package/lib/helpers.js.map +1 -0
- package/{client/index.js → lib/index.d.ts} +3 -3
- package/lib/index.js +25 -0
- package/lib/index.js.map +1 -0
- package/{long-press.directive.d.ts → lib/long-press.directive.d.ts} +0 -0
- package/{long-press.directive.js → lib/long-press.directive.js} +40 -39
- package/lib/long-press.directive.js.map +1 -0
- package/{merge-helpers.backend.d.ts → lib/merge-helpers.backend.d.ts} +0 -0
- package/{merge-helpers.backend.js → lib/merge-helpers.backend.js} +7 -6
- package/lib/merge-helpers.backend.js.map +1 -0
- package/{project.d.ts → lib/project.d.ts} +0 -0
- package/{project.js → lib/project.js} +23 -21
- package/lib/project.js.map +1 -0
- package/{browser → lib}/resize-service.d.ts +0 -0
- package/{resize-service.js → lib/resize-service.js} +5 -4
- package/lib/resize-service.js.map +1 -0
- package/{ts-code-modifier → lib/ts-code}/index.d.ts +0 -0
- package/{ts-code-modifier → lib/ts-code}/index.js +3 -2
- package/lib/ts-code/index.js.map +1 -0
- package/lib/ts-code/ts-code-extractor.d.ts +14 -0
- package/lib/ts-code/ts-code-extractor.js +47 -0
- package/lib/ts-code/ts-code-extractor.js.map +1 -0
- package/{ts-code-modifier → lib/ts-code}/ts-code-modifier.backend.d.ts +0 -0
- package/{ts-code-modifier → lib/ts-code}/ts-code-modifier.backend.js +3 -2
- package/lib/ts-code/ts-code-modifier.backend.js.map +1 -0
- package/package.json +10 -18
- package/package.json_devDependencies.json +50 -50
- package/{package.json_tnp.json → package.json_tnp.json5} +12 -8
- package/tmp-environment.json +86 -123
- package/base-component.js.map +0 -1
- package/base-formly-component.js.map +0 -1
- package/browser/base-component.js +0 -48
- package/browser/base-component.js.map +0 -1
- package/browser/base-formly-component.js +0 -149
- package/browser/base-formly-component.js.map +0 -1
- package/browser/condition-wait.js +0 -57
- package/browser/condition-wait.js.map +0 -1
- package/browser/constants.js +0 -2
- package/browser/constants.js.map +0 -1
- package/browser/dual-component-ctrl.js +0 -118
- package/browser/dual-component-ctrl.js.map +0 -1
- package/browser/es5/base-component.js +0 -89
- package/browser/es5/base-formly-component.js +0 -158
- package/browser/es5/condition-wait.js +0 -135
- package/browser/es5/constants.js +0 -7
- package/browser/es5/dual-component-ctrl.js +0 -164
- package/browser/es5/git-project.js +0 -18
- package/browser/es5/helpers-array-obj.js +0 -129
- package/browser/es5/helpers-environment.js +0 -46
- package/browser/es5/helpers-messages.js +0 -105
- package/browser/es5/helpers-strings-regexes.js +0 -74
- package/browser/es5/helpers-strings.js +0 -96
- package/browser/es5/helpers.js +0 -217
- package/browser/es5/index.js +0 -86
- package/browser/es5/long-press.directive.js +0 -133
- package/browser/es5/project.js +0 -146
- package/browser/es5/resize-service.js +0 -45
- package/browser/git-project.d.ts +0 -2
- package/browser/git-project.js +0 -6
- package/browser/git-project.js.map +0 -1
- package/browser/helpers-array-obj.js +0 -75
- package/browser/helpers-array-obj.js.map +0 -1
- package/browser/helpers-environment.js +0 -21
- package/browser/helpers-environment.js.map +0 -1
- package/browser/helpers-messages.d.ts +0 -7
- package/browser/helpers-messages.js +0 -68
- package/browser/helpers-messages.js.map +0 -1
- package/browser/helpers-strings-regexes.js +0 -49
- package/browser/helpers-strings-regexes.js.map +0 -1
- package/browser/helpers-strings.js +0 -61
- package/browser/helpers-strings.js.map +0 -1
- package/browser/helpers.js +0 -113
- package/browser/helpers.js.map +0 -1
- package/browser/index.js +0 -11
- package/browser/index.js.map +0 -1
- package/browser/long-press.directive.js +0 -125
- package/browser/long-press.directive.js.map +0 -1
- package/browser/project.js +0 -90
- package/browser/project.js.map +0 -1
- package/browser/resize-service.js +0 -20
- package/browser/resize-service.js.map +0 -1
- package/client/base-component.js +0 -48
- package/client/base-component.js.map +0 -1
- package/client/base-formly-component.js +0 -149
- package/client/base-formly-component.js.map +0 -1
- package/client/condition-wait.js +0 -57
- package/client/condition-wait.js.map +0 -1
- package/client/constants.js +0 -2
- package/client/constants.js.map +0 -1
- package/client/dual-component-ctrl.js +0 -118
- package/client/dual-component-ctrl.js.map +0 -1
- package/client/es5/base-component.js +0 -89
- package/client/es5/base-formly-component.js +0 -158
- package/client/es5/condition-wait.js +0 -135
- package/client/es5/constants.js +0 -7
- package/client/es5/dual-component-ctrl.js +0 -164
- package/client/es5/git-project.js +0 -18
- package/client/es5/helpers-array-obj.js +0 -129
- package/client/es5/helpers-environment.js +0 -46
- package/client/es5/helpers-messages.js +0 -105
- package/client/es5/helpers-strings-regexes.js +0 -74
- package/client/es5/helpers-strings.js +0 -96
- package/client/es5/helpers.js +0 -217
- package/client/es5/index.js +0 -86
- package/client/es5/long-press.directive.js +0 -133
- package/client/es5/project.js +0 -146
- package/client/es5/resize-service.js +0 -45
- package/client/git-project.d.ts +0 -2
- package/client/git-project.js +0 -6
- package/client/git-project.js.map +0 -1
- package/client/helpers-array-obj.js +0 -75
- package/client/helpers-array-obj.js.map +0 -1
- package/client/helpers-environment.js +0 -21
- package/client/helpers-environment.js.map +0 -1
- package/client/helpers-messages.d.ts +0 -7
- package/client/helpers-messages.js +0 -68
- package/client/helpers-messages.js.map +0 -1
- package/client/helpers-strings-regexes.js +0 -49
- package/client/helpers-strings-regexes.js.map +0 -1
- package/client/helpers-strings.js +0 -61
- package/client/helpers-strings.js.map +0 -1
- package/client/helpers.js +0 -113
- package/client/helpers.js.map +0 -1
- package/client/index.js.map +0 -1
- package/client/long-press.directive.js +0 -125
- package/client/long-press.directive.js.map +0 -1
- package/client/project.js +0 -90
- package/client/project.js.map +0 -1
- package/client/resize-service.js +0 -20
- package/client/resize-service.js.map +0 -1
- package/condition-wait.js.map +0 -1
- package/constants.js.map +0 -1
- package/dual-component-ctrl.js.map +0 -1
- package/git-project.js.map +0 -1
- package/helpers-array-obj.js.map +0 -1
- package/helpers-cli-tool.backend.js.map +0 -1
- package/helpers-dependencies.backend.js.map +0 -1
- package/helpers-environment.js.map +0 -1
- package/helpers-file-folders.backend.js.map +0 -1
- package/helpers-git.backend.js.map +0 -1
- package/helpers-json5.backend.js.map +0 -1
- package/helpers-messages.d.ts +0 -7
- package/helpers-messages.js +0 -237
- package/helpers-messages.js.map +0 -1
- package/helpers-morphi-framework.backend.js.map +0 -1
- package/helpers-network.backend.js.map +0 -1
- package/helpers-npm.backend.js.map +0 -1
- package/helpers-path.backend.js.map +0 -1
- package/helpers-process.backend.js.map +0 -1
- package/helpers-strings-regexes.js.map +0 -1
- package/helpers-strings.js.map +0 -1
- package/helpers-system-terminal.backend.js.map +0 -1
- package/helpers.js.map +0 -1
- package/long-press.directive.js.map +0 -1
- package/merge-helpers.backend.js.map +0 -1
- package/project.js.map +0 -1
- package/resize-service.js.map +0 -1
- package/ts-code-modifier/index.js.map +0 -1
- package/ts-code-modifier/ts-code-modifier.backend.js.map +0 -1
package/tmp-environment.json
CHANGED
|
@@ -6,9 +6,6 @@
|
|
|
6
6
|
"packageJSON": {
|
|
7
7
|
"tnp": {
|
|
8
8
|
"resources": [],
|
|
9
|
-
"type": "isomorphic-lib",
|
|
10
|
-
"version": "v2",
|
|
11
|
-
"linkedProjects": [],
|
|
12
9
|
"overrided": {
|
|
13
10
|
"ignoreDepsPattern": [],
|
|
14
11
|
"includeAsDev": [],
|
|
@@ -20,11 +17,14 @@
|
|
|
20
17
|
"dependencies": {},
|
|
21
18
|
"linkedFolders": []
|
|
22
19
|
},
|
|
20
|
+
"linkedProjects": [],
|
|
23
21
|
"libReleaseOptions": {
|
|
24
22
|
"nodts": false,
|
|
25
23
|
"obscure": false,
|
|
26
24
|
"ugly": false
|
|
27
25
|
},
|
|
26
|
+
"type": "isomorphic-lib",
|
|
27
|
+
"version": "v3",
|
|
28
28
|
"scripts": {
|
|
29
29
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
30
|
},
|
|
@@ -32,60 +32,56 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"private": false,
|
|
34
34
|
"author": "",
|
|
35
|
-
"homepage": "https://github.com/darekf77/tnp-helpers#readme"
|
|
35
|
+
"homepage": "https://github.com/darekf77/tnp-helpers#readme",
|
|
36
|
+
"workerPlugins": {},
|
|
37
|
+
"additionalNpmNames": [
|
|
38
|
+
"firedev-helpers"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"version": "13.0.4",
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"json5-writer": "0.2.0",
|
|
44
|
+
"morphi": "~13.0.3",
|
|
45
|
+
"tnp-models": "~13.0.3"
|
|
36
46
|
},
|
|
37
|
-
"name": "tnp-helpers",
|
|
38
|
-
"version": "0.0.70",
|
|
39
|
-
"description": "",
|
|
40
47
|
"scripts": {
|
|
41
48
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
42
49
|
},
|
|
43
|
-
"
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/darekf77/tnp-helpers.git"
|
|
46
|
-
},
|
|
47
|
-
"author": "",
|
|
50
|
+
"description": "",
|
|
48
51
|
"license": "MIT",
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
},
|
|
52
|
+
"private": false,
|
|
53
|
+
"author": "",
|
|
52
54
|
"homepage": "https://github.com/darekf77/tnp-helpers#readme",
|
|
53
|
-
"
|
|
54
|
-
"json5-writer": "0.2.0",
|
|
55
|
-
"morphi": "~4.0.53",
|
|
56
|
-
"tnp-models": "~0.0.36"
|
|
57
|
-
},
|
|
55
|
+
"name": "tnp-helpers",
|
|
58
56
|
"devDependencies": {
|
|
59
|
-
"@angular-devkit/build-angular": "
|
|
60
|
-
"@angular
|
|
61
|
-
"@angular
|
|
62
|
-
"@angular/
|
|
63
|
-
"@angular/
|
|
64
|
-
"@angular/
|
|
65
|
-
"@angular/
|
|
66
|
-
"@angular/
|
|
67
|
-
"@angular/
|
|
68
|
-
"@angular/
|
|
69
|
-
"@angular/
|
|
70
|
-
"@angular/
|
|
71
|
-
"@angular/
|
|
72
|
-
"@angular/
|
|
73
|
-
"@angular/
|
|
74
|
-
"@angular/platform-browser-dynamic": "9.1.3",
|
|
75
|
-
"@angular/pwa": "0.900.0-rc.7",
|
|
76
|
-
"@angular/router": "9.1.3",
|
|
77
|
-
"@angular/service-worker": "9.1.3",
|
|
57
|
+
"@angular-devkit/build-angular": "~13.2.5",
|
|
58
|
+
"@angular/animations": "~13.2.0",
|
|
59
|
+
"@angular/cdk": "~13.2.4",
|
|
60
|
+
"@angular/cli": "~13.2.5",
|
|
61
|
+
"@angular/common": "~13.2.0",
|
|
62
|
+
"@angular/compiler": "~13.2.0",
|
|
63
|
+
"@angular/compiler-cli": "~13.2.0",
|
|
64
|
+
"@angular/core": "~13.2.0",
|
|
65
|
+
"@angular/forms": "~13.2.0",
|
|
66
|
+
"@angular/material": "~13.2.4",
|
|
67
|
+
"@angular/platform-browser": "~13.2.0",
|
|
68
|
+
"@angular/platform-browser-dynamic": "~13.2.0",
|
|
69
|
+
"@angular/pwa": "~13.2.5",
|
|
70
|
+
"@angular/router": "~13.2.0",
|
|
71
|
+
"@angular/service-worker": "~13.2.0",
|
|
78
72
|
"@mdi/js": "5.8.55",
|
|
79
|
-
"@
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"@
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@ngx-
|
|
88
|
-
"@
|
|
73
|
+
"@ngrx/component-store": "~13.0.2",
|
|
74
|
+
"@ngrx/data": "~13.0.2",
|
|
75
|
+
"@ngrx/effects": "~13.0.2",
|
|
76
|
+
"@ngrx/entity": "~13.0.2",
|
|
77
|
+
"@ngrx/router-store": "~13.0.2",
|
|
78
|
+
"@ngrx/schematics": "~13.0.2",
|
|
79
|
+
"@ngrx/store": "~13.0.2",
|
|
80
|
+
"@ngrx/store-devtools": "~13.0.2",
|
|
81
|
+
"@ngx-formly/bootstrap": "6.0.0-next.8",
|
|
82
|
+
"@ngx-formly/core": "6.0.0-next.8",
|
|
83
|
+
"@ngx-formly/ionic": "6.0.0-next.8",
|
|
84
|
+
"@ngx-formly/material": "6.0.0-next.8",
|
|
89
85
|
"@types/chai": "4.1.2",
|
|
90
86
|
"@types/chokidar": "2.1.3",
|
|
91
87
|
"@types/dateformat": "1.0.1",
|
|
@@ -97,8 +93,7 @@
|
|
|
97
93
|
"@types/http-proxy": "1.16.0",
|
|
98
94
|
"@types/http-proxy-middleware": "0.19.2",
|
|
99
95
|
"@types/inquirer": "7.3.1",
|
|
100
|
-
"@types/jasmine": "3.
|
|
101
|
-
"@types/jasminewd2": "2.0.3",
|
|
96
|
+
"@types/jasmine": "3.10.0",
|
|
102
97
|
"@types/json-stringify-safe": "5.0.0",
|
|
103
98
|
"@types/json5": "0.0.29",
|
|
104
99
|
"@types/lockfile": "1.0.0",
|
|
@@ -110,23 +105,19 @@
|
|
|
110
105
|
"@types/oauth2orize": "1.8.0",
|
|
111
106
|
"@types/password-hash": "1.2.19",
|
|
112
107
|
"@types/progress": "2.0.3",
|
|
113
|
-
"@types/q": "1.
|
|
108
|
+
"@types/q": "1.5.5",
|
|
114
109
|
"@types/rimraf": "2.0.2",
|
|
115
110
|
"@types/systeminformation": "3.23.0",
|
|
116
111
|
"@types/vinyl": "2.0.2",
|
|
117
112
|
"@types/watch": "1.0.0",
|
|
118
113
|
"accepts": "1.3.4",
|
|
119
|
-
"angular-tree-component": "7.0.0",
|
|
120
114
|
"axios": "0.17.1",
|
|
121
|
-
"
|
|
122
|
-
"babel-preset-env": "1.7.0",
|
|
123
|
-
"background-worker-process": "~0.0.33",
|
|
115
|
+
"background-worker-process": "~0.0.35",
|
|
124
116
|
"bcryptjs": "2.4.3",
|
|
125
117
|
"body-parser": "1.18.2",
|
|
126
|
-
"bootstrap": "
|
|
127
|
-
"bs4-breakpoint": "~2.0.
|
|
118
|
+
"bootstrap": "5.1.3",
|
|
119
|
+
"bs4-breakpoint": "~2.0.42",
|
|
128
120
|
"buffer-shims": "1.0.0",
|
|
129
|
-
"button-dropdown": "~1.0.44",
|
|
130
121
|
"callsite-record": "4.1.3",
|
|
131
122
|
"chai": "4.2.0",
|
|
132
123
|
"chalk": "2.3.2",
|
|
@@ -134,14 +125,12 @@
|
|
|
134
125
|
"cheerio": "1.0.0-rc.3",
|
|
135
126
|
"chokidar": "3.5.1",
|
|
136
127
|
"circular-json": "0.5.1",
|
|
137
|
-
"codelyzer": "5.1.2",
|
|
138
128
|
"command-exists": "1.2.2",
|
|
139
129
|
"compression": "1.7.4",
|
|
140
130
|
"concurrently": "3.5.1",
|
|
141
131
|
"content-type": "1.0.4",
|
|
142
132
|
"cookie-parser": "1.4.3",
|
|
143
133
|
"copy-paste": "1.3.0",
|
|
144
|
-
"core-js-compat": "3.4.0",
|
|
145
134
|
"cors": "2.8.4",
|
|
146
135
|
"cpr": "3.0.1",
|
|
147
136
|
"cross-spawn": "7.0.3",
|
|
@@ -166,58 +155,43 @@
|
|
|
166
155
|
"fuzzy": "0.1.3",
|
|
167
156
|
"glob": "7.1.2",
|
|
168
157
|
"gulp": "3.9.1",
|
|
169
|
-
"hammerjs": "2.0.8",
|
|
170
158
|
"hostile": "1.3.3",
|
|
171
|
-
"html-webpack-plugin": "4.3.0",
|
|
172
159
|
"http-proxy": "1.16.2",
|
|
173
160
|
"http-proxy-middleware": "0.19.1",
|
|
174
161
|
"http-server": "0.11.1",
|
|
175
|
-
"incremental-compiler": "~1.1.
|
|
162
|
+
"incremental-compiler": "~1.1.53",
|
|
176
163
|
"inquirer": "7.3.3",
|
|
177
164
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
178
165
|
"is-elevated": "3.0.0",
|
|
179
166
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
180
|
-
"jasmine-core": "
|
|
181
|
-
"jasmine-spec-reporter": "4.2.1",
|
|
167
|
+
"jasmine-core": "4.0.0",
|
|
182
168
|
"json-stringify-safe": "5.0.1",
|
|
183
|
-
"json10": "~1.0.
|
|
169
|
+
"json10": "~1.0.39",
|
|
184
170
|
"json5": "2.1.3",
|
|
185
|
-
"karma": "
|
|
171
|
+
"karma": "6.3.0",
|
|
186
172
|
"karma-chrome-launcher": "3.1.0",
|
|
187
173
|
"karma-cli": "1.0.1",
|
|
188
|
-
"karma-coverage
|
|
189
|
-
"karma-jasmine": "
|
|
190
|
-
"karma-jasmine-html-reporter": "1.
|
|
174
|
+
"karma-coverage": "2.1.0",
|
|
175
|
+
"karma-jasmine": "4.0.0",
|
|
176
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
|
191
177
|
"lnk": "1.0.1",
|
|
192
178
|
"lockfile": "1.0.4",
|
|
193
179
|
"lodash": "4.17.4",
|
|
194
|
-
"lodash-walk-object": "~1.0.
|
|
180
|
+
"lodash-walk-object": "~1.0.41",
|
|
195
181
|
"lowdb": "1.0.0",
|
|
196
|
-
"magic-renamer": "~0.0.
|
|
182
|
+
"magic-renamer": "~0.0.20",
|
|
197
183
|
"material-design-icons": "3.0.1",
|
|
198
184
|
"method-override": "2.3.10",
|
|
199
185
|
"minimist": "1.2.0",
|
|
200
186
|
"mkdirp": "0.5.1",
|
|
201
187
|
"mocha": "5.2.0",
|
|
202
188
|
"moment": "2.22.2",
|
|
203
|
-
"ng-
|
|
204
|
-
"ng-
|
|
205
|
-
"
|
|
206
|
-
"ng2-
|
|
207
|
-
"ng2-logger": "~8.0.19",
|
|
208
|
-
"ng2-rest": "~11.0.41",
|
|
209
|
-
"ng4-icons": "~0.0.28",
|
|
210
|
-
"ng4-modal": "~0.0.28",
|
|
211
|
-
"ngx-bootstrap": "5.2.0",
|
|
212
|
-
"ngx-breadcrumbs": "0.0.3",
|
|
213
|
-
"ngx-editor": "4.1.0",
|
|
214
|
-
"ngx-moment": "3.5.0",
|
|
215
|
-
"ngx-pipes": "2.6.0",
|
|
216
|
-
"ngx-store": "2.1.0",
|
|
217
|
-
"ngx-toastr": "11.2.1",
|
|
218
|
-
"ngx-wig": "8.0.0",
|
|
189
|
+
"ng-packagr": "13.0.0",
|
|
190
|
+
"ng-talkback": "~2.4.25",
|
|
191
|
+
"ng2-logger": "~8.0.30",
|
|
192
|
+
"ng2-rest": "~13.0.3",
|
|
219
193
|
"node-cli-test": "0.0.2",
|
|
220
|
-
"node-cli-tester": "~0.0.
|
|
194
|
+
"node-cli-tester": "~0.0.22",
|
|
221
195
|
"node-localstorage": "2.1.6",
|
|
222
196
|
"node-notifier": "6.0.0",
|
|
223
197
|
"nodemon": "1.14.11",
|
|
@@ -230,60 +204,49 @@
|
|
|
230
204
|
"passport-http-bearer": "1.0.1",
|
|
231
205
|
"password-hash": "1.2.2",
|
|
232
206
|
"portfinder": "1.0.21",
|
|
233
|
-
"prettier": "2.3.2",
|
|
234
207
|
"progress": "2.0.3",
|
|
235
208
|
"prompts": "0.1.8",
|
|
236
|
-
"protractor": "5.4.3",
|
|
237
209
|
"ps-list": "6.1.0",
|
|
238
210
|
"ps-node": "0.1.6",
|
|
239
211
|
"q": "1.5.1",
|
|
240
212
|
"randomcolor": "0.5.3",
|
|
241
|
-
"record-replay-req-res-scenario": "~0.0.
|
|
213
|
+
"record-replay-req-res-scenario": "~0.0.26",
|
|
242
214
|
"reflect-metadata": "0.1.10",
|
|
243
215
|
"rimraf": "2.6.2",
|
|
244
|
-
"rxjs": "
|
|
245
|
-
"rxjs-compat": "6.5.3",
|
|
216
|
+
"rxjs": "~7.5.0",
|
|
246
217
|
"simple-git": "1.96.0",
|
|
247
218
|
"sloc": "0.2.0",
|
|
248
219
|
"socket.io": "2.4.1",
|
|
249
220
|
"sort-package-json": "1.11.0",
|
|
250
|
-
"static-columns": "~2.0.12",
|
|
251
221
|
"string-similarity": "4.0.2",
|
|
252
222
|
"sudo-block": "3.0.0",
|
|
253
223
|
"systeminformation": "3.45.7",
|
|
254
224
|
"task.js": "0.1.5",
|
|
255
|
-
"tnp-cli": "~2.0.
|
|
256
|
-
"tnp-config": "~1.0.
|
|
257
|
-
"tnp-core": "~1.0.
|
|
258
|
-
"tnp-db": "~0.0.
|
|
259
|
-
"tnp-helpers": "~
|
|
260
|
-
"tnp-tools": "~0.0.
|
|
261
|
-
"tnp-ui": "~0.0.
|
|
262
|
-
"ts-
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"typescript": "4.1.5",
|
|
269
|
-
"typescript-class-helpers": "~1.0.41",
|
|
270
|
-
"typescript-formatter": "7.2.2",
|
|
271
|
-
"uglifyjs-webpack-plugin": "2.2.0",
|
|
225
|
+
"tnp-cli": "~2.0.27",
|
|
226
|
+
"tnp-config": "~1.0.30",
|
|
227
|
+
"tnp-core": "~1.0.60",
|
|
228
|
+
"tnp-db": "~0.0.44",
|
|
229
|
+
"tnp-helpers": "~13.0.2",
|
|
230
|
+
"tnp-tools": "~0.0.46",
|
|
231
|
+
"tnp-ui": "~0.0.33",
|
|
232
|
+
"ts-node": "10.7.0",
|
|
233
|
+
"tslib": "~2.3.0",
|
|
234
|
+
"typeorm": "~0.2.45",
|
|
235
|
+
"typescript": "~4.5.2",
|
|
236
|
+
"typescript-class-helpers": "~1.0.49",
|
|
237
|
+
"typescript-formatter": "~7.2.2",
|
|
272
238
|
"underscore": "1.9.1",
|
|
273
239
|
"uuid": "8.3.2",
|
|
274
240
|
"validator": "9.2.0",
|
|
275
|
-
"vpn-split": "~0.0.
|
|
241
|
+
"vpn-split": "~0.0.18",
|
|
276
242
|
"watch": "1.0.2",
|
|
277
|
-
"
|
|
278
|
-
|
|
279
|
-
},
|
|
280
|
-
"private": false,
|
|
281
|
-
"lastBuildTagHash": "15b88c6ea69d98f3e536e15ae046d37f88ed7a7a"
|
|
243
|
+
"zone.js": "~0.11.4"
|
|
244
|
+
}
|
|
282
245
|
},
|
|
283
246
|
"build": {
|
|
284
|
-
"number":
|
|
285
|
-
"date": "
|
|
286
|
-
"hash": "
|
|
247
|
+
"number": 325,
|
|
248
|
+
"date": "2022-03-07T04:02:43.000Z",
|
|
249
|
+
"hash": "63a0683055a4fb829f63846f602e3fb87aa9b29c",
|
|
287
250
|
"options": {}
|
|
288
251
|
},
|
|
289
252
|
"currentProjectName": "tnp-helpers",
|
|
@@ -291,7 +254,7 @@
|
|
|
291
254
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22tnp-helpers%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
292
255
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
293
256
|
"currentProjectType": "isomorphic-lib",
|
|
294
|
-
"currentFrameworkVersion": "0.0.
|
|
257
|
+
"currentFrameworkVersion": "0.0.159",
|
|
295
258
|
"currentProjectIsStrictSite": false,
|
|
296
259
|
"currentProjectIsDependencySite": false,
|
|
297
260
|
"currentProjectIsStatic": false,
|
package/base-component.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-component.js","sourceRoot":"","sources":["../src/base-component.ts"],"names":[],"mappings":";;;;AACA,sCAAoE;AACpE,0CAAwD;AAOxD;IAAA;QAEE,aAAa;QACJ,UAAK,GAAQ,EAAE,CAAC;QAEzB,aAAQ,GAAmB,EAAE,CAAC;IAQhC,CAAC;IANC,mCAAW,GAAX;QACE,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,WAAW,EAAE,EAAf,CAAe,CAAC,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;IAC3B,CAAC;IAPQ;QAAR,YAAK,EAAE;;gDAAiB;IAHL,aAAa;QAJlC,gBAAS,CAAC;YACT,QAAQ,EAAE,yBAAyB;YACnC,QAAQ,EAAE,aAAa;SACxB,CAAC;OACoB,aAAa,CAalC;IAAD,oBAAC;CAAA,AAbD,IAaC;AAbqB,sCAAa;AAenC,IAAM,kCAAkC,GAAG,MAAM,EAAE,CAAA;AAEnD;IAAqD,kDAAa;IAEhE,gCACU,QAAgB;QAD1B,YAGE,iBAAO,SAER;QAJS,cAAQ,GAAR,QAAQ,CAAQ;QAGxB,KAAI,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC;;IACnD,CAAC;IAGS,mEAAkC,GAA5C;QACE,OAAO,CAAC,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;IACpD,CAAC;IACS,0DAAyB,GAAnC;QAAA,iBAUC;QATC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,UAAA,KAAK;YACrD,IAAI,KAAK,YAAY,sBAAa,IAAI,KAAI,CAAC,UAAU,CAAC,EAAE;gBACtD,KAAI,CAAC,kCAAkC,CAAC,GAAG,IAAI,CAAC;gBAChD,KAAI,CAAC,UAAU,CAAC,EAAE,CAAC;gBACnB,IAAI,KAAI,CAAC,kCAAkC,CAAC,EAAE;oBAC5C,KAAI,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC;iBAClD;aACF;QACH,CAAC,CAAQ,CAAC,CAAC;IACb,CAAC;IAEH,6BAAC;AAAD,CAAC,AAzBD,CAAqD,aAAa,GAyBjE;AAzBqB,wDAAsB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-formly-component.js","sourceRoot":"","sources":["../src/base-formly-component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { Component, Input } from '@angular/core';
|
|
3
|
-
import { NavigationEnd } from '@angular/router';
|
|
4
|
-
let BaseComponent = class BaseComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
// @ts-ignore
|
|
7
|
-
this.model = {};
|
|
8
|
-
this.handlers = [];
|
|
9
|
-
}
|
|
10
|
-
ngOnDestroy() {
|
|
11
|
-
this.handlers.forEach(h => h.unsubscribe());
|
|
12
|
-
this.handlers.length = 0;
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
__decorate([
|
|
16
|
-
Input(),
|
|
17
|
-
__metadata("design:type", Object)
|
|
18
|
-
], BaseComponent.prototype, "model", void 0);
|
|
19
|
-
BaseComponent = __decorate([
|
|
20
|
-
Component({
|
|
21
|
-
selector: 'app-base-component-meta',
|
|
22
|
-
template: '<div></div>'
|
|
23
|
-
})
|
|
24
|
-
], BaseComponent);
|
|
25
|
-
export { BaseComponent };
|
|
26
|
-
const isCalledNgInitAfterInternalRefresh = Symbol();
|
|
27
|
-
export class BaseComponentForRouter extends BaseComponent {
|
|
28
|
-
constructor(__router) {
|
|
29
|
-
super();
|
|
30
|
-
this.__router = __router;
|
|
31
|
-
this[isCalledNgInitAfterInternalRefresh] = false;
|
|
32
|
-
}
|
|
33
|
-
isCalledNgInitAfterInternalRefresh() {
|
|
34
|
-
return !!this[isCalledNgInitAfterInternalRefresh];
|
|
35
|
-
}
|
|
36
|
-
reloadNgOninitOnUrlChange() {
|
|
37
|
-
this.handlers.push(this.__router.events.subscribe(event => {
|
|
38
|
-
if (event instanceof NavigationEnd && this['ngOnInit']) {
|
|
39
|
-
this[isCalledNgInitAfterInternalRefresh] = true;
|
|
40
|
-
this['ngOnInit']();
|
|
41
|
-
if (this[isCalledNgInitAfterInternalRefresh]) {
|
|
42
|
-
this[isCalledNgInitAfterInternalRefresh] = false;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}));
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
//# sourceMappingURL=base-component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-component.js","sourceRoot":"","sources":["../../tmp-src-bundle/base-component.ts"],"names":[],"mappings":";AAGA,OAAO,EAAqB,SAAS,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,aAAa,EAAU,MAAM,iBAAiB,CAAC;AAOxD,IAAsB,aAAa,GAAnC,MAAsB,aAAa;IAAnC;QAEE,aAAa;QACJ,UAAK,GAAQ,EAAE,CAAC;QAEzB,aAAQ,GAAmB,EAAE,CAAC;IAQhC,CAAC;IANC,WAAW;QACT,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;IAC3B,CAAC;CAGF,CAAA;AAVU;IAAR,KAAK,EAAE;;4CAAiB;AAHL,aAAa;IAJlC,SAAS,CAAC;QACT,QAAQ,EAAE,yBAAyB;QACnC,QAAQ,EAAE,aAAa;KACxB,CAAC;GACoB,aAAa,CAalC;SAbqB,aAAa;AAenC,MAAM,kCAAkC,GAAG,MAAM,EAAE,CAAA;AAEnD,MAAM,OAAgB,sBAAuB,SAAQ,aAAa;IAEhE,YACU,QAAgB;QAExB,KAAK,EAAE,CAAC;QAFA,aAAQ,GAAR,QAAQ,CAAQ;QAGxB,IAAI,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC;IACnD,CAAC;IAGS,kCAAkC;QAC1C,OAAO,CAAC,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;IACpD,CAAC;IACS,yBAAyB;QACjC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE;YACxD,IAAI,KAAK,YAAY,aAAa,IAAI,IAAI,CAAC,UAAU,CAAC,EAAE;gBACtD,IAAI,CAAC,kCAAkC,CAAC,GAAG,IAAI,CAAC;gBAChD,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;gBACnB,IAAI,IAAI,CAAC,kCAAkC,CAAC,EAAE;oBAC5C,IAAI,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC;iBAClD;aACF;QACH,CAAC,CAAQ,CAAC,CAAC;IACb,CAAC;CAEF"}
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { FieldType } from '@ngx-formly/core';
|
|
3
|
-
import { Component, Input, Output, } from '@angular/core';
|
|
4
|
-
import { FormControl } from '@angular/forms';
|
|
5
|
-
import { Log, Level } from 'ng2-logger/browser';
|
|
6
|
-
import { DualComponentController } from './dual-component-ctrl';
|
|
7
|
-
import { EventEmitter } from '@angular/core';
|
|
8
|
-
const log = Log.create('base formly component', Level.__NOTHING);
|
|
9
|
-
let BaseFormlyComponent = class BaseFormlyComponent extends FieldType {
|
|
10
|
-
constructor() {
|
|
11
|
-
super(...arguments);
|
|
12
|
-
this.DualComponentController = DualComponentController;
|
|
13
|
-
this.ctrl = {};
|
|
14
|
-
this.change = new EventEmitter();
|
|
15
|
-
this.handlers = [];
|
|
16
|
-
this.__field = {
|
|
17
|
-
templateOptions: {}
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
// @ts-ignore
|
|
21
|
-
get mode() {
|
|
22
|
-
return this.ctrl.mode;
|
|
23
|
-
}
|
|
24
|
-
// @ts-ignore
|
|
25
|
-
set mode(v) {
|
|
26
|
-
this.ctrl.mode = v;
|
|
27
|
-
}
|
|
28
|
-
// @ts-ignore
|
|
29
|
-
set model(v) {
|
|
30
|
-
this.ctrl.model = v;
|
|
31
|
-
}
|
|
32
|
-
get model() {
|
|
33
|
-
return this.ctrl.model;
|
|
34
|
-
}
|
|
35
|
-
// @ts-ignore
|
|
36
|
-
set key(value) {
|
|
37
|
-
if (this.ctrl && this.ctrl.isFormlyMode) {
|
|
38
|
-
return;
|
|
39
|
-
}
|
|
40
|
-
this.path = value;
|
|
41
|
-
}
|
|
42
|
-
get key() {
|
|
43
|
-
if (this.ctrl && this.ctrl.isFormlyMode) {
|
|
44
|
-
return this.field.key;
|
|
45
|
-
}
|
|
46
|
-
return this.path;
|
|
47
|
-
}
|
|
48
|
-
ngOnDestroy() {
|
|
49
|
-
this.handlers.forEach(h => h.unsubscribe());
|
|
50
|
-
this.handlers.length = 0;
|
|
51
|
-
}
|
|
52
|
-
ngAfterViewInit() {
|
|
53
|
-
}
|
|
54
|
-
// _model: any;
|
|
55
|
-
ngOnInit() {
|
|
56
|
-
// console.log('model', this.model)
|
|
57
|
-
// console.log('ket', this.key)
|
|
58
|
-
const isFormlyMode = !!this.field;
|
|
59
|
-
log.i(`isFormlyMode: ${isFormlyMode}`);
|
|
60
|
-
if (!isFormlyMode) {
|
|
61
|
-
const that = this;
|
|
62
|
-
Object.defineProperty(this, 'field', {
|
|
63
|
-
get: function () {
|
|
64
|
-
return that.__field;
|
|
65
|
-
},
|
|
66
|
-
set: function (v) {
|
|
67
|
-
that.__field = v;
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
|
-
}
|
|
71
|
-
const existed = this.ctrl;
|
|
72
|
-
this.ctrl = new this.DualComponentController(this, isFormlyMode);
|
|
73
|
-
// @ts-ignore
|
|
74
|
-
Object.keys(existed).forEach(key => {
|
|
75
|
-
this.ctrl[key] = existed[key];
|
|
76
|
-
});
|
|
77
|
-
// if (!this.formControl) {
|
|
78
|
-
// this.formControl = new FormControl({})
|
|
79
|
-
// Object.defineProperty(this, 'field', {
|
|
80
|
-
// get: () => {
|
|
81
|
-
// return {
|
|
82
|
-
// formControl: this.formControl
|
|
83
|
-
// } as FormlyFieldConfig
|
|
84
|
-
// }
|
|
85
|
-
// })
|
|
86
|
-
// // this.formControl = new FormControl({})
|
|
87
|
-
// }
|
|
88
|
-
this.change.next(this.ctrl.value);
|
|
89
|
-
}
|
|
90
|
-
};
|
|
91
|
-
__decorate([
|
|
92
|
-
Input(),
|
|
93
|
-
__metadata("design:type", Object)
|
|
94
|
-
], BaseFormlyComponent.prototype, "pizda", void 0);
|
|
95
|
-
__decorate([
|
|
96
|
-
Input(),
|
|
97
|
-
__metadata("design:type", Object),
|
|
98
|
-
__metadata("design:paramtypes", [Object])
|
|
99
|
-
], BaseFormlyComponent.prototype, "mode", null);
|
|
100
|
-
__decorate([
|
|
101
|
-
Input(),
|
|
102
|
-
__metadata("design:type", Boolean)
|
|
103
|
-
], BaseFormlyComponent.prototype, "disabled", void 0);
|
|
104
|
-
__decorate([
|
|
105
|
-
Input(),
|
|
106
|
-
__metadata("design:type", Boolean)
|
|
107
|
-
], BaseFormlyComponent.prototype, "required", void 0);
|
|
108
|
-
__decorate([
|
|
109
|
-
Input(),
|
|
110
|
-
__metadata("design:type", String)
|
|
111
|
-
], BaseFormlyComponent.prototype, "label", void 0);
|
|
112
|
-
__decorate([
|
|
113
|
-
Input(),
|
|
114
|
-
__metadata("design:type", String)
|
|
115
|
-
], BaseFormlyComponent.prototype, "placeholder", void 0);
|
|
116
|
-
__decorate([
|
|
117
|
-
Input(),
|
|
118
|
-
__metadata("design:type", Object)
|
|
119
|
-
], BaseFormlyComponent.prototype, "defaultValue", void 0);
|
|
120
|
-
__decorate([
|
|
121
|
-
Input(),
|
|
122
|
-
__metadata("design:type", Object),
|
|
123
|
-
__metadata("design:paramtypes", [Object])
|
|
124
|
-
], BaseFormlyComponent.prototype, "model", null);
|
|
125
|
-
__decorate([
|
|
126
|
-
Input(),
|
|
127
|
-
__metadata("design:type", String)
|
|
128
|
-
], BaseFormlyComponent.prototype, "path", void 0);
|
|
129
|
-
__decorate([
|
|
130
|
-
Output(),
|
|
131
|
-
__metadata("design:type", Object)
|
|
132
|
-
], BaseFormlyComponent.prototype, "change", void 0);
|
|
133
|
-
__decorate([
|
|
134
|
-
Input(),
|
|
135
|
-
__metadata("design:type", String),
|
|
136
|
-
__metadata("design:paramtypes", [String])
|
|
137
|
-
], BaseFormlyComponent.prototype, "key", null);
|
|
138
|
-
__decorate([
|
|
139
|
-
Input(),
|
|
140
|
-
__metadata("design:type", FormControl)
|
|
141
|
-
], BaseFormlyComponent.prototype, "formControl", void 0);
|
|
142
|
-
BaseFormlyComponent = __decorate([
|
|
143
|
-
Component({
|
|
144
|
-
selector: 'app-base-formly-component-meta',
|
|
145
|
-
template: `<div></div>`
|
|
146
|
-
})
|
|
147
|
-
], BaseFormlyComponent);
|
|
148
|
-
export { BaseFormlyComponent };
|
|
149
|
-
//# sourceMappingURL=base-formly-component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base-formly-component.js","sourceRoot":"","sources":["../../tmp-src-bundle/base-formly-component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { __awaiter } from "tslib";
|
|
2
|
-
import { _ } from 'tnp-core/browser';
|
|
3
|
-
import { Helpers } from './index';
|
|
4
|
-
export function conditionWait(conditionAndTimeout) {
|
|
5
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
6
|
-
yield waitFor(conditionAndTimeout);
|
|
7
|
-
});
|
|
8
|
-
}
|
|
9
|
-
function waitFor(arr, messageToShow = void 0) {
|
|
10
|
-
return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
|
|
11
|
-
if (arr.length === 0) {
|
|
12
|
-
resolve(void 0);
|
|
13
|
-
}
|
|
14
|
-
else {
|
|
15
|
-
// console.log(arr.length)
|
|
16
|
-
const check = arr.shift();
|
|
17
|
-
if (_.isUndefined(check.timeoutCheck)) {
|
|
18
|
-
check.timeoutCheck = 2000;
|
|
19
|
-
}
|
|
20
|
-
if (_.isUndefined(check.timeoutNext)) {
|
|
21
|
-
check.timeoutNext = 4000;
|
|
22
|
-
}
|
|
23
|
-
const { timeoutCheck, timeoutNext, name } = check;
|
|
24
|
-
// console.log(`timeoutCheck: ${timeoutCheck}`);
|
|
25
|
-
// console.log(`timeoutNext: ${timeoutNext}`);
|
|
26
|
-
// console.log(`Checking: ${name}`)
|
|
27
|
-
const resultTrue = yield Helpers.runSyncOrAsync(check.callback, check);
|
|
28
|
-
// console.log(`after: ${name}`)
|
|
29
|
-
if (resultTrue) {
|
|
30
|
-
// console.log(`timeout 1 is set to ${timeoutNext}`)
|
|
31
|
-
setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
32
|
-
// console.log(`timeout 1 is over`)
|
|
33
|
-
yield waitFor(arr).then(() => {
|
|
34
|
-
resolve(void 0);
|
|
35
|
-
});
|
|
36
|
-
}), timeoutNext);
|
|
37
|
-
}
|
|
38
|
-
else {
|
|
39
|
-
arr.unshift(check);
|
|
40
|
-
if (!messageToShow || check.errorMessage !== messageToShow) {
|
|
41
|
-
Helpers.info(check.errorMessage);
|
|
42
|
-
}
|
|
43
|
-
else {
|
|
44
|
-
// console.log(`dont show error message ${check.errorMessage}`)
|
|
45
|
-
}
|
|
46
|
-
// console.log(`timeout 2 is set to ${timeoutCheck}, arr.length is ${arr.length}`)
|
|
47
|
-
setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
48
|
-
// console.log(`timeout 2 ${timeoutCheck} ovef`)
|
|
49
|
-
yield waitFor(arr, check.errorMessage).then(() => {
|
|
50
|
-
resolve(void 0);
|
|
51
|
-
});
|
|
52
|
-
}), timeoutCheck);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}));
|
|
56
|
-
}
|
|
57
|
-
//# sourceMappingURL=condition-wait.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"condition-wait.js","sourceRoot":"","sources":["../../tmp-src-bundle/condition-wait.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,kBAAkB,CAAC;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAUlC,MAAM,UAAgB,aAAa,CAAC,mBAAgC;;QAClE,MAAM,OAAO,CAAC,mBAAmB,CAAC,CAAC;IACrC,CAAC;CAAA;AAED,SAAS,OAAO,CAAC,GAAgB,EAAE,gBAAwB,KAAK,CAAC;IAC/D,OAAO,IAAI,OAAO,CAAC,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;QAC3C,IAAI,GAAG,CAAC,MAAM,KAAK,CAAC,EAAE;YACpB,OAAO,CAAC,KAAK,CAAC,CAAC,CAAA;SAChB;aAAM;YACL,0BAA0B;YAC1B,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,EAAE,CAAC;YAC1B,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,YAAY,CAAC,EAAE;gBACrC,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;aAC3B;YACD,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,WAAW,CAAC,EAAE;gBACpC,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC;aAC1B;YACD,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,IAAI,EAAE,GAAG,KAAK,CAAC;YAClD,gDAAgD;YAChD,8CAA8C;YAC9C,mCAAmC;YACnC,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;YACvE,gCAAgC;YAChC,IAAI,UAAU,EAAE;gBACd,oDAAoD;gBACpD,UAAU,CAAC,GAAS,EAAE;oBACpB,mCAAmC;oBACnC,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE;wBAC3B,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;oBAClB,CAAC,CAAC,CAAC;gBACL,CAAC,CAAA,EAAE,WAAW,CAAC,CAAC;aACjB;iBAAM;gBAEL,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;gBACnB,IAAI,CAAC,aAAa,IAAI,KAAK,CAAC,YAAY,KAAK,aAAa,EAAE;oBAC1D,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;iBAClC;qBAAM;oBACL,gEAAgE;iBACjE;gBACD,kFAAkF;gBAClF,UAAU,CAAC,GAAS,EAAE;oBACpB,gDAAgD;oBAChD,MAAM,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE;wBAC/C,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;oBAClB,CAAC,CAAC,CAAC;gBACL,CAAC,CAAA,EAAE,YAAY,CAAC,CAAC;aAClB;SACF;IACH,CAAC,CAAA,CAAC,CAAA;AACJ,CAAC"}
|
package/browser/constants.js
DELETED
package/browser/constants.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../tmp-src-bundle/constants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,CAAC"}
|