static-columns 16.100.3 → 16.100.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/README.md +99 -99
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/client/README.md +24 -24
- package/client/package.json +36 -34
- package/{package.json_tnp.json5 → firedev.jsonc} +54 -53
- package/lib/column/index.js +3 -3
- package/lib/columns-gap/index.js +3 -3
- package/package.json +3 -2
- package/tmp-environment.json +40 -38
- package/websql/README.md +24 -24
- package/package.json_devDependencies.json +0 -237
package/README.md
CHANGED
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
|
|
2
|
-
# STATIC-COLUMNS - effortless Angular2+ layouts
|
|
3
|
-
|
|
4
|
-
# forget about flex box complicated rules !
|
|
5
|
-
|
|
6
|
-
With this simple library
|
|
7
|
-
|
|
8
|
-
**angular / html columns with static width**
|
|
9
|
-
|
|
10
|
-
mixed with
|
|
11
|
-
|
|
12
|
-
**columns with responsive width**
|
|
13
|
-
|
|
14
|
-
are not a problem anymore!
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
---
|
|
18
|
-
### How to install:
|
|
19
|
-
```
|
|
20
|
-
npm install static-columns --save
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### Import it:
|
|
25
|
-
```ts
|
|
26
|
-
import { StaticColumnsModule } form "static-columns/browser"
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### Put module inside angular imports:
|
|
30
|
-
```ts
|
|
31
|
-
|
|
32
|
-
@NgModule(
|
|
33
|
-
// ...
|
|
34
|
-
imports: [StaticColumnsModule]
|
|
35
|
-
// ...
|
|
36
|
-
)
|
|
37
|
-
class MyExampleModule {
|
|
38
|
-
// ...
|
|
39
|
-
}
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
# Examples
|
|
43
|
-
|
|
44
|
-
## Basic usage:
|
|
45
|
-
```html
|
|
46
|
-
<columns-container>
|
|
47
|
-
<column grow > <!-- this column will grow/shring based on screen width -->
|
|
48
|
-
something
|
|
49
|
-
</column>
|
|
50
|
-
<column width="190">
|
|
51
|
-
<button>ZAKRES</button>
|
|
52
|
-
</column>
|
|
53
|
-
<column width="190">
|
|
54
|
-
<button-magnifier></button-magnifier>
|
|
55
|
-
<button-bell></button-bell>
|
|
56
|
-
<button-gears></button-gears>
|
|
57
|
-
</column>
|
|
58
|
-
</columns-container>
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-

|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
## Hide/show column in mobile view:
|
|
65
|
-
```html
|
|
66
|
-
<columns-container>
|
|
67
|
-
<column hideMobile >
|
|
68
|
-
I am not visible when screen < 600px
|
|
69
|
-
</column>
|
|
70
|
-
<column showMobile>
|
|
71
|
-
I am visible only when screen < 600px
|
|
72
|
-
</column>
|
|
73
|
-
</columns-container>
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Hide/show column in tablet view:
|
|
77
|
-
```html
|
|
78
|
-
<columns-container>
|
|
79
|
-
<column hideTablet >
|
|
80
|
-
I am not visible when screen > 600px and < 840 px
|
|
81
|
-
</column>
|
|
82
|
-
<column showTablet>
|
|
83
|
-
I am visible only when screen > 600px and < 840 px
|
|
84
|
-
</column>
|
|
85
|
-
</columns-container>
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
## Hide/show column in desktop view:
|
|
90
|
-
```html
|
|
91
|
-
<columns-container>
|
|
92
|
-
<column hideDesktop >
|
|
93
|
-
I am not visible when screen > 840 px
|
|
94
|
-
</column>
|
|
95
|
-
<column showDesktop>
|
|
96
|
-
I am visible only when screen > 840 px
|
|
97
|
-
</column>
|
|
98
|
-
</columns-container>
|
|
99
|
-
```
|
|
1
|
+
|
|
2
|
+
# STATIC-COLUMNS - effortless Angular2+ layouts
|
|
3
|
+
|
|
4
|
+
# forget about flex box complicated rules !
|
|
5
|
+
|
|
6
|
+
With this simple library
|
|
7
|
+
|
|
8
|
+
**angular / html columns with static width**
|
|
9
|
+
|
|
10
|
+
mixed with
|
|
11
|
+
|
|
12
|
+
**columns with responsive width**
|
|
13
|
+
|
|
14
|
+
are not a problem anymore!
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
### How to install:
|
|
19
|
+
```
|
|
20
|
+
npm install static-columns --save
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Import it:
|
|
25
|
+
```ts
|
|
26
|
+
import { StaticColumnsModule } form "static-columns/browser"
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Put module inside angular imports:
|
|
30
|
+
```ts
|
|
31
|
+
|
|
32
|
+
@NgModule(
|
|
33
|
+
// ...
|
|
34
|
+
imports: [StaticColumnsModule]
|
|
35
|
+
// ...
|
|
36
|
+
)
|
|
37
|
+
class MyExampleModule {
|
|
38
|
+
// ...
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
# Examples
|
|
43
|
+
|
|
44
|
+
## Basic usage:
|
|
45
|
+
```html
|
|
46
|
+
<columns-container>
|
|
47
|
+
<column grow > <!-- this column will grow/shring based on screen width -->
|
|
48
|
+
something
|
|
49
|
+
</column>
|
|
50
|
+
<column width="190">
|
|
51
|
+
<button>ZAKRES</button>
|
|
52
|
+
</column>
|
|
53
|
+
<column width="190">
|
|
54
|
+
<button-magnifier></button-magnifier>
|
|
55
|
+
<button-bell></button-bell>
|
|
56
|
+
<button-gears></button-gears>
|
|
57
|
+
</column>
|
|
58
|
+
</columns-container>
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+

|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
## Hide/show column in mobile view:
|
|
65
|
+
```html
|
|
66
|
+
<columns-container>
|
|
67
|
+
<column hideMobile >
|
|
68
|
+
I am not visible when screen < 600px
|
|
69
|
+
</column>
|
|
70
|
+
<column showMobile>
|
|
71
|
+
I am visible only when screen < 600px
|
|
72
|
+
</column>
|
|
73
|
+
</columns-container>
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Hide/show column in tablet view:
|
|
77
|
+
```html
|
|
78
|
+
<columns-container>
|
|
79
|
+
<column hideTablet >
|
|
80
|
+
I am not visible when screen > 600px and < 840 px
|
|
81
|
+
</column>
|
|
82
|
+
<column showTablet>
|
|
83
|
+
I am visible only when screen > 600px and < 840 px
|
|
84
|
+
</column>
|
|
85
|
+
</columns-container>
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## Hide/show column in desktop view:
|
|
90
|
+
```html
|
|
91
|
+
<columns-container>
|
|
92
|
+
<column hideDesktop >
|
|
93
|
+
I am not visible when screen > 840 px
|
|
94
|
+
</column>
|
|
95
|
+
<column showDesktop>
|
|
96
|
+
I am visible only when screen > 840 px
|
|
97
|
+
</column>
|
|
98
|
+
</columns-container>
|
|
99
|
+
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
|
2
2
|
|
|
3
|
-
Assets from this folder are being shipped with this npm package (static-columns@16.100.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (static-columns@16.100.4)
|
|
4
4
|
created from this project.
|
|
5
5
|
|
|
6
6
|
THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
package/browser/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/client/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/client/package.json
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"linkedFolders": [],
|
|
13
13
|
"npmFixes": []
|
|
14
14
|
},
|
|
15
|
+
"linkedProjects": [],
|
|
15
16
|
"smartContainerBuildTarget": "",
|
|
16
17
|
"linkedRepos": [],
|
|
17
18
|
"libReleaseOptions": {
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"workerPlugins": {}
|
|
49
50
|
},
|
|
50
51
|
"name": "static-columns",
|
|
51
|
-
"version": "16.100.
|
|
52
|
+
"version": "16.100.4",
|
|
52
53
|
"description": "Static columns with flexbox for Agnular2",
|
|
53
54
|
"repository": {
|
|
54
55
|
"type": "git",
|
|
@@ -72,7 +73,7 @@
|
|
|
72
73
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
73
74
|
"dependencies": {},
|
|
74
75
|
"private": false,
|
|
75
|
-
"lastBuildTagHash": "
|
|
76
|
+
"lastBuildTagHash": "cf70726bb6abde70d0632a3e03bec4670215368f",
|
|
76
77
|
"devDependencies": {
|
|
77
78
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
78
79
|
"@angular-devkit/build-angular": "~16.0.5",
|
|
@@ -136,7 +137,6 @@
|
|
|
136
137
|
"@types/json5": "0.0.29",
|
|
137
138
|
"@types/lockfile": "1.0.0",
|
|
138
139
|
"@types/lodash": "4.14.92",
|
|
139
|
-
"@types/lowdb": "1.0.6",
|
|
140
140
|
"@types/mocha": "5.2.5",
|
|
141
141
|
"@types/node": "16.18.21",
|
|
142
142
|
"@types/node-notifier": "5.4.0",
|
|
@@ -155,9 +155,9 @@
|
|
|
155
155
|
"angular-material-css-vars": "5.0.2",
|
|
156
156
|
"angular-resize-event": "3.2.0",
|
|
157
157
|
"animate.css": "4.1.1 ",
|
|
158
|
-
"any-project-cli": "
|
|
158
|
+
"any-project-cli": "16.100.7",
|
|
159
159
|
"axios": "1.3.5",
|
|
160
|
-
"background-worker-process": "
|
|
160
|
+
"background-worker-process": "16.100.4",
|
|
161
161
|
"base32": "0.0.7",
|
|
162
162
|
"bcryptjs": "2.4.3",
|
|
163
163
|
"better-sqlite3": "9.5.0",
|
|
@@ -205,19 +205,20 @@
|
|
|
205
205
|
"file-saver": "2.0.5",
|
|
206
206
|
"file-type": "18.5.0",
|
|
207
207
|
"firedev": "^16",
|
|
208
|
-
"firedev-crud": "
|
|
209
|
-
"firedev-crud-deamon": "
|
|
210
|
-
"firedev-ports": "
|
|
211
|
-
"firedev-storage": "
|
|
212
|
-
"firedev-type-sql": "
|
|
213
|
-
"firedev-typeorm": "
|
|
214
|
-
"firedev-ui": "
|
|
208
|
+
"firedev-crud": "16.100.7",
|
|
209
|
+
"firedev-crud-deamon": "16.100.6",
|
|
210
|
+
"firedev-ports": "16.100.7",
|
|
211
|
+
"firedev-storage": "16.100.4",
|
|
212
|
+
"firedev-type-sql": "16.100.4",
|
|
213
|
+
"firedev-typeorm": "16.100.4",
|
|
214
|
+
"firedev-ui": "16.100.5",
|
|
215
215
|
"fkill": "6.1.0",
|
|
216
216
|
"font-awesome": "4.7.0",
|
|
217
217
|
"form-data": "4.0.0",
|
|
218
218
|
"fs-extra": "8.1.0",
|
|
219
219
|
"fuzzy": "0.1.3",
|
|
220
220
|
"glob": "7.1.2",
|
|
221
|
+
"google-libphonenumber": "3.2.25",
|
|
221
222
|
"gulp": "3.9.1",
|
|
222
223
|
"helmet": "7.0.0",
|
|
223
224
|
"hostile": "1.3.3",
|
|
@@ -228,11 +229,11 @@
|
|
|
228
229
|
"image-focus": "1.2.1",
|
|
229
230
|
"immer": "10.0.2",
|
|
230
231
|
"immutable": "4.3.0",
|
|
231
|
-
"incremental-compiler": "
|
|
232
|
+
"incremental-compiler": "16.100.7",
|
|
232
233
|
"inquirer": "7.3.3",
|
|
233
234
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
234
235
|
"is-elevated": "3.0.0",
|
|
235
|
-
"isomorphic-region-loader": "
|
|
236
|
+
"isomorphic-region-loader": "16.100.6",
|
|
236
237
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
237
238
|
"jest": "29.5.0",
|
|
238
239
|
"jest-date-mock": "1.0.8",
|
|
@@ -243,8 +244,8 @@
|
|
|
243
244
|
"joi": "17.9.2",
|
|
244
245
|
"jscodeshift": "0.6.3",
|
|
245
246
|
"json-stringify-safe": "5.0.1",
|
|
246
|
-
"json10": "
|
|
247
|
-
"json10-writer": "
|
|
247
|
+
"json10": "16.100.4",
|
|
248
|
+
"json10-writer": "16.100.7",
|
|
248
249
|
"json5": "2.2.1",
|
|
249
250
|
"json5-writer": "0.2.0",
|
|
250
251
|
"jszip": "3.10.1",
|
|
@@ -253,23 +254,23 @@
|
|
|
253
254
|
"localforage": "1.10.0",
|
|
254
255
|
"lockfile": "1.0.4",
|
|
255
256
|
"lodash": "4.17.20",
|
|
256
|
-
"lodash-walk-object": "
|
|
257
|
-
"lowdb": "
|
|
258
|
-
"magic-renamer": "
|
|
257
|
+
"lodash-walk-object": "16.100.4",
|
|
258
|
+
"lowdb": "7.0.1",
|
|
259
|
+
"magic-renamer": "16.100.6",
|
|
259
260
|
"material-design-icons": "3.0.1",
|
|
260
261
|
"method-override": "2.3.10",
|
|
261
262
|
"minimist": "1.2.0",
|
|
262
263
|
"mkdirp": "0.5.1",
|
|
263
264
|
"mocha": "10.2.0",
|
|
264
265
|
"moment": "2.29.3",
|
|
265
|
-
"morphi": "~16.5.17",
|
|
266
266
|
"ng-for-track-by-property": "16.0.1",
|
|
267
267
|
"ng-in-viewport": "15.0.2",
|
|
268
268
|
"ng-lock": "16.0.1",
|
|
269
269
|
"ng-packagr": "16.0.1",
|
|
270
|
-
"ng-talkback": "
|
|
271
|
-
"ng2-logger": "
|
|
272
|
-
"ng2-
|
|
270
|
+
"ng-talkback": "16.100.3",
|
|
271
|
+
"ng2-logger": "16.100.7",
|
|
272
|
+
"ng2-pdfjs-viewer": "16.0.4",
|
|
273
|
+
"ng2-rest": "16.100.4",
|
|
273
274
|
"ngx-ace-wrapper": "14.0.0",
|
|
274
275
|
"ngx-editor": "15.3.0",
|
|
275
276
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -282,7 +283,7 @@
|
|
|
282
283
|
"ngx-scrolltop": "6.0.0",
|
|
283
284
|
"ngx-store": "3.1.1",
|
|
284
285
|
"ngx-typed-js": "2.1.1",
|
|
285
|
-
"node-cli-tester": "
|
|
286
|
+
"node-cli-tester": "16.100.3",
|
|
286
287
|
"node-localstorage": "2.1.6",
|
|
287
288
|
"node-notifier": "6.0.0",
|
|
288
289
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -310,7 +311,7 @@
|
|
|
310
311
|
"q": "1.5.1",
|
|
311
312
|
"rallax.js": "2.0.4",
|
|
312
313
|
"randomcolor": "0.5.3",
|
|
313
|
-
"record-replay-req-res-scenario": "
|
|
314
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
314
315
|
"reflect-metadata": "0.1.10",
|
|
315
316
|
"rimraf": "2.6.2",
|
|
316
317
|
"rxjs": "~7.8.0",
|
|
@@ -321,7 +322,7 @@
|
|
|
321
322
|
"socket.io": "2.4.1",
|
|
322
323
|
"sort-package-json": "1.11.0",
|
|
323
324
|
"sql.js": "1.8.0",
|
|
324
|
-
"static-columns": "
|
|
325
|
+
"static-columns": "16.100.3",
|
|
325
326
|
"string-similarity": "4.0.2",
|
|
326
327
|
"sudo-block": "3.0.0",
|
|
327
328
|
"supertest": "6.3.3",
|
|
@@ -329,26 +330,27 @@
|
|
|
329
330
|
"systeminformation": "3.45.7",
|
|
330
331
|
"task.js": "0.1.5",
|
|
331
332
|
"threads": "1.7.0",
|
|
332
|
-
"tnp-cli": "
|
|
333
|
-
"tnp-config": "
|
|
334
|
-
"tnp-core": "
|
|
335
|
-
"tnp-db": "
|
|
336
|
-
"tnp-helpers": "
|
|
337
|
-
"tnp-models": "
|
|
333
|
+
"tnp-cli": "16.100.3",
|
|
334
|
+
"tnp-config": "16.100.7",
|
|
335
|
+
"tnp-core": "16.100.17",
|
|
336
|
+
"tnp-db": "16.100.6",
|
|
337
|
+
"tnp-helpers": "16.100.7",
|
|
338
|
+
"tnp-models": "16.100.7",
|
|
338
339
|
"ts-debug": "1.3.0",
|
|
340
|
+
"ts-json-schema-generator": "2.1.1",
|
|
339
341
|
"ts-loader": "2.3.1",
|
|
340
342
|
"ts-node": "10.9.1",
|
|
341
343
|
"tslib": "~2.3.0",
|
|
342
344
|
"tslint": "5.9.1",
|
|
343
345
|
"turndown": "7.1.2",
|
|
344
346
|
"typescript": "~5.0.2",
|
|
345
|
-
"typescript-class-helpers": "~16.100.
|
|
347
|
+
"typescript-class-helpers": "~16.100.7",
|
|
346
348
|
"typescript-formatter": "~7.2.2",
|
|
347
349
|
"underscore": "1.9.1",
|
|
348
350
|
"uuid": "8.3.2",
|
|
349
351
|
"validator": "9.2.0",
|
|
350
352
|
"video.js": "8.3.0",
|
|
351
|
-
"vpn-split": "
|
|
353
|
+
"vpn-split": "16.100.3",
|
|
352
354
|
"watch": "1.0.2",
|
|
353
355
|
"webpack": "~5.80",
|
|
354
356
|
"webpack-dev-middleware": "~6.0.2",
|
|
@@ -1,54 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": [
|
|
3
|
-
"README.md",
|
|
4
|
-
"screen.png"
|
|
5
|
-
],
|
|
6
|
-
|
|
7
|
-
"overrided": {
|
|
8
|
-
"ignoreDepsPattern": [],
|
|
9
|
-
"includeAsDev":
|
|
10
|
-
"includeOnly": [],
|
|
11
|
-
"dependencies": {},
|
|
12
|
-
"linkedFolders": [],
|
|
13
|
-
|
|
14
|
-
},
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
1
|
+
{
|
|
2
|
+
"resources": [
|
|
3
|
+
"README.md",
|
|
4
|
+
"screen.png"
|
|
5
|
+
],
|
|
6
|
+
|
|
7
|
+
"overrided": {
|
|
8
|
+
"ignoreDepsPattern": [],
|
|
9
|
+
"includeAsDev": "*",
|
|
10
|
+
"includeOnly": [],
|
|
11
|
+
"dependencies": {},
|
|
12
|
+
"linkedFolders": [],
|
|
13
|
+
"npmFixes": [],
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"linkedProjects": [],
|
|
17
|
+
"smartContainerBuildTarget": "",
|
|
18
|
+
"linkedRepos": [],
|
|
19
|
+
|
|
20
|
+
"libReleaseOptions": {
|
|
21
|
+
"nodts": false,
|
|
22
|
+
"obscure": false,
|
|
23
|
+
"ugly": false,
|
|
24
|
+
"includeNodeModules": false,
|
|
25
|
+
"cliBuildNoDts": false,
|
|
26
|
+
"cliBuildObscure": false,
|
|
27
|
+
"cliBuildIncludeNodeModules": false,
|
|
28
|
+
"cliBuildUglify": false,
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"smartContainerTarget": "",
|
|
32
|
+
"type": "isomorphic-lib",
|
|
33
|
+
"isCoreProject": false,
|
|
34
|
+
"version": "v4",
|
|
35
|
+
"isGenerated": false,
|
|
36
|
+
"useFramework": false,
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"private": false,
|
|
39
|
+
"description": "Static columns with flexbox for Agnular2",
|
|
40
|
+
"author": "Dariusz Filipiak",
|
|
41
|
+
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
42
|
+
|
|
43
|
+
"keywords": [
|
|
44
|
+
"angular2",
|
|
45
|
+
"static",
|
|
46
|
+
"width",
|
|
47
|
+
"column",
|
|
48
|
+
"static",
|
|
49
|
+
"columns",
|
|
50
|
+
"flexbox",
|
|
51
|
+
"columns"
|
|
52
|
+
],
|
|
53
|
+
|
|
54
|
+
"workerPlugins": {},
|
|
54
55
|
}
|
package/lib/column/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
5
|
-
exports.
|
|
3
|
+
exports.dummy1716262865619 = void 0;
|
|
4
|
+
function dummy1716262865619() { }
|
|
5
|
+
exports.dummy1716262865619 = dummy1716262865619;
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/lib/columns-gap/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
5
|
-
exports.
|
|
3
|
+
exports.dummy1716262865623 = void 0;
|
|
4
|
+
function dummy1716262865623() { }
|
|
5
|
+
exports.dummy1716262865623 = dummy1716262865623;
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"linkedFolders": [],
|
|
13
13
|
"npmFixes": []
|
|
14
14
|
},
|
|
15
|
+
"linkedProjects": [],
|
|
15
16
|
"smartContainerBuildTarget": "",
|
|
16
17
|
"linkedRepos": [],
|
|
17
18
|
"libReleaseOptions": {
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"workerPlugins": {}
|
|
49
50
|
},
|
|
50
51
|
"name": "static-columns",
|
|
51
|
-
"version": "16.100.
|
|
52
|
+
"version": "16.100.4",
|
|
52
53
|
"description": "Static columns with flexbox for Agnular2",
|
|
53
54
|
"repository": {
|
|
54
55
|
"type": "git",
|
|
@@ -72,7 +73,7 @@
|
|
|
72
73
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
73
74
|
"dependencies": {},
|
|
74
75
|
"private": false,
|
|
75
|
-
"lastBuildTagHash": "
|
|
76
|
+
"lastBuildTagHash": "cf70726bb6abde70d0632a3e03bec4670215368f",
|
|
76
77
|
"devDependencies": {},
|
|
77
78
|
"main": "dist/app.electron.js"
|
|
78
79
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"linkedFolders": [],
|
|
18
18
|
"npmFixes": []
|
|
19
19
|
},
|
|
20
|
+
"linkedProjects": [],
|
|
20
21
|
"smartContainerBuildTarget": "",
|
|
21
22
|
"linkedRepos": [],
|
|
22
23
|
"libReleaseOptions": {
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"workerPlugins": {}
|
|
54
55
|
},
|
|
55
56
|
"name": "static-columns",
|
|
56
|
-
"version": "16.100.
|
|
57
|
+
"version": "16.100.4",
|
|
57
58
|
"description": "Static columns with flexbox for Agnular2",
|
|
58
59
|
"repository": {
|
|
59
60
|
"type": "git",
|
|
@@ -77,7 +78,7 @@
|
|
|
77
78
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
78
79
|
"dependencies": {},
|
|
79
80
|
"private": false,
|
|
80
|
-
"lastBuildTagHash": "
|
|
81
|
+
"lastBuildTagHash": "cf70726bb6abde70d0632a3e03bec4670215368f",
|
|
81
82
|
"devDependencies": {
|
|
82
83
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
83
84
|
"@angular-devkit/build-angular": "~16.0.5",
|
|
@@ -141,7 +142,6 @@
|
|
|
141
142
|
"@types/json5": "0.0.29",
|
|
142
143
|
"@types/lockfile": "1.0.0",
|
|
143
144
|
"@types/lodash": "4.14.92",
|
|
144
|
-
"@types/lowdb": "1.0.6",
|
|
145
145
|
"@types/mocha": "5.2.5",
|
|
146
146
|
"@types/node": "16.18.21",
|
|
147
147
|
"@types/node-notifier": "5.4.0",
|
|
@@ -160,9 +160,9 @@
|
|
|
160
160
|
"angular-material-css-vars": "5.0.2",
|
|
161
161
|
"angular-resize-event": "3.2.0",
|
|
162
162
|
"animate.css": "4.1.1 ",
|
|
163
|
-
"any-project-cli": "
|
|
163
|
+
"any-project-cli": "16.100.7",
|
|
164
164
|
"axios": "1.3.5",
|
|
165
|
-
"background-worker-process": "
|
|
165
|
+
"background-worker-process": "16.100.4",
|
|
166
166
|
"base32": "0.0.7",
|
|
167
167
|
"bcryptjs": "2.4.3",
|
|
168
168
|
"better-sqlite3": "9.5.0",
|
|
@@ -210,19 +210,20 @@
|
|
|
210
210
|
"file-saver": "2.0.5",
|
|
211
211
|
"file-type": "18.5.0",
|
|
212
212
|
"firedev": "^16",
|
|
213
|
-
"firedev-crud": "
|
|
214
|
-
"firedev-crud-deamon": "
|
|
215
|
-
"firedev-ports": "
|
|
216
|
-
"firedev-storage": "
|
|
217
|
-
"firedev-type-sql": "
|
|
218
|
-
"firedev-typeorm": "
|
|
219
|
-
"firedev-ui": "
|
|
213
|
+
"firedev-crud": "16.100.7",
|
|
214
|
+
"firedev-crud-deamon": "16.100.6",
|
|
215
|
+
"firedev-ports": "16.100.7",
|
|
216
|
+
"firedev-storage": "16.100.4",
|
|
217
|
+
"firedev-type-sql": "16.100.4",
|
|
218
|
+
"firedev-typeorm": "16.100.4",
|
|
219
|
+
"firedev-ui": "16.100.5",
|
|
220
220
|
"fkill": "6.1.0",
|
|
221
221
|
"font-awesome": "4.7.0",
|
|
222
222
|
"form-data": "4.0.0",
|
|
223
223
|
"fs-extra": "8.1.0",
|
|
224
224
|
"fuzzy": "0.1.3",
|
|
225
225
|
"glob": "7.1.2",
|
|
226
|
+
"google-libphonenumber": "3.2.25",
|
|
226
227
|
"gulp": "3.9.1",
|
|
227
228
|
"helmet": "7.0.0",
|
|
228
229
|
"hostile": "1.3.3",
|
|
@@ -233,11 +234,11 @@
|
|
|
233
234
|
"image-focus": "1.2.1",
|
|
234
235
|
"immer": "10.0.2",
|
|
235
236
|
"immutable": "4.3.0",
|
|
236
|
-
"incremental-compiler": "
|
|
237
|
+
"incremental-compiler": "16.100.7",
|
|
237
238
|
"inquirer": "7.3.3",
|
|
238
239
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
239
240
|
"is-elevated": "3.0.0",
|
|
240
|
-
"isomorphic-region-loader": "
|
|
241
|
+
"isomorphic-region-loader": "16.100.6",
|
|
241
242
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
242
243
|
"jest": "29.5.0",
|
|
243
244
|
"jest-date-mock": "1.0.8",
|
|
@@ -248,8 +249,8 @@
|
|
|
248
249
|
"joi": "17.9.2",
|
|
249
250
|
"jscodeshift": "0.6.3",
|
|
250
251
|
"json-stringify-safe": "5.0.1",
|
|
251
|
-
"json10": "
|
|
252
|
-
"json10-writer": "
|
|
252
|
+
"json10": "16.100.4",
|
|
253
|
+
"json10-writer": "16.100.7",
|
|
253
254
|
"json5": "2.2.1",
|
|
254
255
|
"json5-writer": "0.2.0",
|
|
255
256
|
"jszip": "3.10.1",
|
|
@@ -258,23 +259,23 @@
|
|
|
258
259
|
"localforage": "1.10.0",
|
|
259
260
|
"lockfile": "1.0.4",
|
|
260
261
|
"lodash": "4.17.20",
|
|
261
|
-
"lodash-walk-object": "
|
|
262
|
-
"lowdb": "
|
|
263
|
-
"magic-renamer": "
|
|
262
|
+
"lodash-walk-object": "16.100.4",
|
|
263
|
+
"lowdb": "7.0.1",
|
|
264
|
+
"magic-renamer": "16.100.6",
|
|
264
265
|
"material-design-icons": "3.0.1",
|
|
265
266
|
"method-override": "2.3.10",
|
|
266
267
|
"minimist": "1.2.0",
|
|
267
268
|
"mkdirp": "0.5.1",
|
|
268
269
|
"mocha": "10.2.0",
|
|
269
270
|
"moment": "2.29.3",
|
|
270
|
-
"morphi": "~16.5.17",
|
|
271
271
|
"ng-for-track-by-property": "16.0.1",
|
|
272
272
|
"ng-in-viewport": "15.0.2",
|
|
273
273
|
"ng-lock": "16.0.1",
|
|
274
274
|
"ng-packagr": "16.0.1",
|
|
275
|
-
"ng-talkback": "
|
|
276
|
-
"ng2-logger": "
|
|
277
|
-
"ng2-
|
|
275
|
+
"ng-talkback": "16.100.3",
|
|
276
|
+
"ng2-logger": "16.100.7",
|
|
277
|
+
"ng2-pdfjs-viewer": "16.0.4",
|
|
278
|
+
"ng2-rest": "16.100.4",
|
|
278
279
|
"ngx-ace-wrapper": "14.0.0",
|
|
279
280
|
"ngx-editor": "15.3.0",
|
|
280
281
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -287,7 +288,7 @@
|
|
|
287
288
|
"ngx-scrolltop": "6.0.0",
|
|
288
289
|
"ngx-store": "3.1.1",
|
|
289
290
|
"ngx-typed-js": "2.1.1",
|
|
290
|
-
"node-cli-tester": "
|
|
291
|
+
"node-cli-tester": "16.100.3",
|
|
291
292
|
"node-localstorage": "2.1.6",
|
|
292
293
|
"node-notifier": "6.0.0",
|
|
293
294
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -315,7 +316,7 @@
|
|
|
315
316
|
"q": "1.5.1",
|
|
316
317
|
"rallax.js": "2.0.4",
|
|
317
318
|
"randomcolor": "0.5.3",
|
|
318
|
-
"record-replay-req-res-scenario": "
|
|
319
|
+
"record-replay-req-res-scenario": "16.100.3",
|
|
319
320
|
"reflect-metadata": "0.1.10",
|
|
320
321
|
"rimraf": "2.6.2",
|
|
321
322
|
"rxjs": "~7.8.0",
|
|
@@ -326,7 +327,7 @@
|
|
|
326
327
|
"socket.io": "2.4.1",
|
|
327
328
|
"sort-package-json": "1.11.0",
|
|
328
329
|
"sql.js": "1.8.0",
|
|
329
|
-
"static-columns": "
|
|
330
|
+
"static-columns": "16.100.3",
|
|
330
331
|
"string-similarity": "4.0.2",
|
|
331
332
|
"sudo-block": "3.0.0",
|
|
332
333
|
"supertest": "6.3.3",
|
|
@@ -334,26 +335,27 @@
|
|
|
334
335
|
"systeminformation": "3.45.7",
|
|
335
336
|
"task.js": "0.1.5",
|
|
336
337
|
"threads": "1.7.0",
|
|
337
|
-
"tnp-cli": "
|
|
338
|
-
"tnp-config": "
|
|
339
|
-
"tnp-core": "
|
|
340
|
-
"tnp-db": "
|
|
341
|
-
"tnp-helpers": "
|
|
342
|
-
"tnp-models": "
|
|
338
|
+
"tnp-cli": "16.100.3",
|
|
339
|
+
"tnp-config": "16.100.7",
|
|
340
|
+
"tnp-core": "16.100.17",
|
|
341
|
+
"tnp-db": "16.100.6",
|
|
342
|
+
"tnp-helpers": "16.100.7",
|
|
343
|
+
"tnp-models": "16.100.7",
|
|
343
344
|
"ts-debug": "1.3.0",
|
|
345
|
+
"ts-json-schema-generator": "2.1.1",
|
|
344
346
|
"ts-loader": "2.3.1",
|
|
345
347
|
"ts-node": "10.9.1",
|
|
346
348
|
"tslib": "~2.3.0",
|
|
347
349
|
"tslint": "5.9.1",
|
|
348
350
|
"turndown": "7.1.2",
|
|
349
351
|
"typescript": "~5.0.2",
|
|
350
|
-
"typescript-class-helpers": "~16.100.
|
|
352
|
+
"typescript-class-helpers": "~16.100.7",
|
|
351
353
|
"typescript-formatter": "~7.2.2",
|
|
352
354
|
"underscore": "1.9.1",
|
|
353
355
|
"uuid": "8.3.2",
|
|
354
356
|
"validator": "9.2.0",
|
|
355
357
|
"video.js": "8.3.0",
|
|
356
|
-
"vpn-split": "
|
|
358
|
+
"vpn-split": "16.100.3",
|
|
357
359
|
"watch": "1.0.2",
|
|
358
360
|
"webpack": "~5.80",
|
|
359
361
|
"webpack-dev-middleware": "~6.0.2",
|
|
@@ -364,14 +366,14 @@
|
|
|
364
366
|
"main": "dist/app.electron.js"
|
|
365
367
|
},
|
|
366
368
|
"build": {
|
|
367
|
-
"number":
|
|
368
|
-
"date": "2024-05-
|
|
369
|
-
"hash": "
|
|
369
|
+
"number": 381,
|
|
370
|
+
"date": "2024-05-20T11:14:33.000Z",
|
|
371
|
+
"hash": "a16c47d31c24e16895a8f830124225deb26ad4a4"
|
|
370
372
|
},
|
|
371
373
|
"currentProjectName": "static-columns",
|
|
372
374
|
"currentProjectGenericName": "static-columns",
|
|
373
375
|
"currentProjectType": "isomorphic-lib",
|
|
374
|
-
"currentFrameworkVersion": "16.100.
|
|
376
|
+
"currentFrameworkVersion": "16.100.7",
|
|
375
377
|
"isStandaloneProject": true,
|
|
376
378
|
"isSmartContainer": false,
|
|
377
379
|
"pathesTsconfig": "\"paths\": {\"static-columns\":[\"./src/lib\"],\"static-columns/*\":[\"./src/lib/*\"]},",
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"@angular-devkit/build-angular": "~12.2.8",
|
|
3
|
-
"@angular-devkit/build-optimizer": "~0.1202.8",
|
|
4
|
-
"@angular-devkit/schematics": "~12.2.8",
|
|
5
|
-
"@angular/animations": "~12.2.8",
|
|
6
|
-
"@angular/cdk": "~12.2.8",
|
|
7
|
-
"@angular/cli": "~12.2.8",
|
|
8
|
-
"@angular/common": "~12.2.8",
|
|
9
|
-
"@angular/compiler": "~12.2.8",
|
|
10
|
-
"@angular/compiler-cli": "~12.2.8",
|
|
11
|
-
"@angular/core": "~12.2.8",
|
|
12
|
-
"@angular/flex-layout": "~12.0.0-beta.35",
|
|
13
|
-
"@angular/forms": "~12.2.8",
|
|
14
|
-
"@angular/language-service": "~12.2.8",
|
|
15
|
-
"@angular/material": "~12.2.8",
|
|
16
|
-
"@angular/platform-browser": "~12.2.8",
|
|
17
|
-
"@angular/platform-browser-dynamic": "~12.2.8",
|
|
18
|
-
"@angular/pwa": "~12.2.8",
|
|
19
|
-
"@angular/router": "~12.2.8",
|
|
20
|
-
"@angular/service-worker": "~12.2.8",
|
|
21
|
-
"@mdi/js": "5.8.55",
|
|
22
|
-
"@ngneat/transloco": "2.22.0",
|
|
23
|
-
"@ngrx/effects": "~12.4.0",
|
|
24
|
-
"@ngrx/entity": "~12.4.0",
|
|
25
|
-
"@ngrx/router-store": "~12.4.0",
|
|
26
|
-
"@ngrx/schematics": "~12.4.0",
|
|
27
|
-
"@ngrx/store": "~12.4.0",
|
|
28
|
-
"@ngrx/store-devtools": "~12.4.0",
|
|
29
|
-
"@ngx-formly/bootstrap": "5.5.6",
|
|
30
|
-
"@ngx-formly/core": "5.5.6",
|
|
31
|
-
"@ngx-formly/ionic": "5.5.6",
|
|
32
|
-
"@ngx-formly/material": "5.5.6",
|
|
33
|
-
"@ngx-loading-bar/core": "4.2.0",
|
|
34
|
-
"@ngx-loading-bar/http": "4.2.0",
|
|
35
|
-
"@ngx-loading-bar/router": "4.2.0",
|
|
36
|
-
"@ngx-translate/core": "11.0.1",
|
|
37
|
-
"@ngx-translate/http-loader": "4.0.0",
|
|
38
|
-
"@swimlane/ngx-datatable": "16.0.2",
|
|
39
|
-
"@types/chai": "4.1.2",
|
|
40
|
-
"@types/chokidar": "2.1.3",
|
|
41
|
-
"@types/dateformat": "1.0.1",
|
|
42
|
-
"@types/diff": "3.2.2",
|
|
43
|
-
"@types/express": "4.11.0",
|
|
44
|
-
"@types/express-fileupload": "0.1.1",
|
|
45
|
-
"@types/fs-extra": "7.0.0",
|
|
46
|
-
"@types/glob": "5.0.35",
|
|
47
|
-
"@types/http-proxy": "1.16.0",
|
|
48
|
-
"@types/http-proxy-middleware": "0.19.2",
|
|
49
|
-
"@types/inquirer": "7.3.1",
|
|
50
|
-
"@types/jasmine": "3.6.0",
|
|
51
|
-
"@types/jasminewd2": "2.0.3",
|
|
52
|
-
"@types/json-stringify-safe": "5.0.0",
|
|
53
|
-
"@types/json5": "0.0.29",
|
|
54
|
-
"@types/lockfile": "1.0.0",
|
|
55
|
-
"@types/lodash": "4.14.92",
|
|
56
|
-
"@types/lowdb": "1.0.6",
|
|
57
|
-
"@types/mocha": "5.2.5",
|
|
58
|
-
"@types/node": "12.11.1",
|
|
59
|
-
"@types/node-notifier": "5.4.0",
|
|
60
|
-
"@types/oauth2orize": "1.8.0",
|
|
61
|
-
"@types/password-hash": "1.2.19",
|
|
62
|
-
"@types/progress": "2.0.3",
|
|
63
|
-
"@types/q": "1.5.5",
|
|
64
|
-
"@types/rimraf": "2.0.2",
|
|
65
|
-
"@types/systeminformation": "3.23.0",
|
|
66
|
-
"@types/vinyl": "2.0.2",
|
|
67
|
-
"@types/watch": "1.0.0",
|
|
68
|
-
"accepts": "1.3.4",
|
|
69
|
-
"angular-tree-component": "7.0.0",
|
|
70
|
-
"axios": "0.17.1",
|
|
71
|
-
"babel-cli": "6.26.0",
|
|
72
|
-
"babel-preset-env": "1.7.0",
|
|
73
|
-
"background-worker-process": "~0.0.35",
|
|
74
|
-
"bcryptjs": "2.4.3",
|
|
75
|
-
"body-parser": "1.18.2",
|
|
76
|
-
"bootstrap": "4.3.1",
|
|
77
|
-
"bs4-breakpoint": "~2.0.40",
|
|
78
|
-
"buffer-shims": "1.0.0",
|
|
79
|
-
"button-dropdown": "~1.0.45",
|
|
80
|
-
"callsite-record": "4.1.3",
|
|
81
|
-
"chai": "4.2.0",
|
|
82
|
-
"chalk": "2.3.2",
|
|
83
|
-
"check-node-version": "3.2.0",
|
|
84
|
-
"cheerio": "1.0.0-rc.3",
|
|
85
|
-
"chokidar": "3.5.1",
|
|
86
|
-
"circular-json": "0.5.1",
|
|
87
|
-
"codelyzer": "6.0.0",
|
|
88
|
-
"command-exists": "1.2.2",
|
|
89
|
-
"compression": "1.7.4",
|
|
90
|
-
"concurrently": "3.5.1",
|
|
91
|
-
"content-type": "1.0.4",
|
|
92
|
-
"cookie-parser": "1.4.3",
|
|
93
|
-
"copy-paste": "1.3.0",
|
|
94
|
-
"core-js-compat": "3.4.0",
|
|
95
|
-
"cors": "2.8.4",
|
|
96
|
-
"cpr": "3.0.1",
|
|
97
|
-
"cross-spawn": "7.0.3",
|
|
98
|
-
"dateformat": "3.0.3",
|
|
99
|
-
"detect-mocha": "0.1.0",
|
|
100
|
-
"diff": "3.2.0",
|
|
101
|
-
"element-resize-detector": "1.1.15",
|
|
102
|
-
"enquirer": "2.3.0",
|
|
103
|
-
"enum-values": "1.2.1",
|
|
104
|
-
"errorhandler": "1.5.0",
|
|
105
|
-
"eslint": "7.13.0",
|
|
106
|
-
"eslint-plugin-import": "2.22.1",
|
|
107
|
-
"eslint-plugin-jsdoc": "30.7.8",
|
|
108
|
-
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
109
|
-
"express": "4.16.3",
|
|
110
|
-
"express-fileupload": "0.4.0",
|
|
111
|
-
"fbgraph": "1.4.1",
|
|
112
|
-
"file-loader": "1.1.5",
|
|
113
|
-
"fkill": "6.1.0",
|
|
114
|
-
"font-awesome": "4.7.0",
|
|
115
|
-
"fs-extra": "8.1.0",
|
|
116
|
-
"fuzzy": "0.1.3",
|
|
117
|
-
"glob": "7.1.2",
|
|
118
|
-
"gulp": "3.9.1",
|
|
119
|
-
"hammerjs": "2.0.8",
|
|
120
|
-
"hostile": "1.3.3",
|
|
121
|
-
"html-webpack-plugin": "4.3.0",
|
|
122
|
-
"http-proxy": "1.16.2",
|
|
123
|
-
"http-proxy-middleware": "0.19.1",
|
|
124
|
-
"http-server": "0.11.1",
|
|
125
|
-
"incremental-compiler": "~1.1.53",
|
|
126
|
-
"inquirer": "7.3.3",
|
|
127
|
-
"inquirer-autocomplete-prompt": "1.3.0",
|
|
128
|
-
"is-elevated": "3.0.0",
|
|
129
|
-
"istanbul-instrumenter-loader": "2.0.0",
|
|
130
|
-
"jasmine-core": "3.6.0",
|
|
131
|
-
"jasmine-spec-reporter": "5.0.0",
|
|
132
|
-
"jest": "27.0.6",
|
|
133
|
-
"jest-date-mock": "1.0.8",
|
|
134
|
-
"jest-junit": "12.2.0",
|
|
135
|
-
"jest-preset-angular": "9.0.7",
|
|
136
|
-
"json-stringify-safe": "5.0.1",
|
|
137
|
-
"json10": "~1.0.34",
|
|
138
|
-
"json5": "2.1.3",
|
|
139
|
-
"json5-writer": "0.2.0",
|
|
140
|
-
"karma": "6.1.0",
|
|
141
|
-
"karma-chrome-launcher": "3.1.0",
|
|
142
|
-
"karma-cli": "1.0.1",
|
|
143
|
-
"karma-coverage": "2.0.3",
|
|
144
|
-
"karma-coverage-istanbul-reporter": "2.1.0",
|
|
145
|
-
"karma-jasmine": "4.0.0",
|
|
146
|
-
"karma-jasmine-html-reporter": "1.5.0",
|
|
147
|
-
"lnk": "1.0.1",
|
|
148
|
-
"lockfile": "1.0.4",
|
|
149
|
-
"lodash": "4.17.4",
|
|
150
|
-
"lodash-walk-object": "~1.0.35",
|
|
151
|
-
"lowdb": "1.0.0",
|
|
152
|
-
"magic-renamer": "~0.0.20",
|
|
153
|
-
"material-design-icons": "3.0.1",
|
|
154
|
-
"method-override": "2.3.10",
|
|
155
|
-
"minimist": "1.2.0",
|
|
156
|
-
"mkdirp": "0.5.1",
|
|
157
|
-
"mocha": "5.2.0",
|
|
158
|
-
"moment": "2.22.2",
|
|
159
|
-
"morphi": "~4.0.54",
|
|
160
|
-
"ng-modal-lib": "0.0.6",
|
|
161
|
-
"ng-packagr": "5.7.1",
|
|
162
|
-
"ng-talkback": "~2.4.25",
|
|
163
|
-
"ng2-file-upload": "1.3.0",
|
|
164
|
-
"ng2-logger": "~8.0.20",
|
|
165
|
-
"ng2-rest": "~11.0.42",
|
|
166
|
-
"ng4-icons": "~0.0.30",
|
|
167
|
-
"ng4-modal": "~0.0.30",
|
|
168
|
-
"ngx-bootstrap": "5.2.0",
|
|
169
|
-
"ngx-breadcrumbs": "0.0.3",
|
|
170
|
-
"ngx-editor": "4.1.0",
|
|
171
|
-
"ngx-moment": "3.5.0",
|
|
172
|
-
"ngx-pipes": "2.6.0",
|
|
173
|
-
"ngx-store": "2.1.0",
|
|
174
|
-
"ngx-toastr": "11.2.1",
|
|
175
|
-
"ngx-wig": "8.0.0",
|
|
176
|
-
"node-cli-test": "0.0.2",
|
|
177
|
-
"node-cli-tester": "~0.0.22",
|
|
178
|
-
"node-localstorage": "2.1.6",
|
|
179
|
-
"node-notifier": "6.0.0",
|
|
180
|
-
"nodemon": "1.14.11",
|
|
181
|
-
"npm-get-dependents": "1.0.1",
|
|
182
|
-
"npm-run": "4.1.2",
|
|
183
|
-
"omelette": "0.4.5",
|
|
184
|
-
"open": "7.2.1",
|
|
185
|
-
"ora": "3.4.0",
|
|
186
|
-
"passport": "0.3.2",
|
|
187
|
-
"passport-http-bearer": "1.0.1",
|
|
188
|
-
"password-hash": "1.2.2",
|
|
189
|
-
"portfinder": "1.0.21",
|
|
190
|
-
"prettier": "2.3.2",
|
|
191
|
-
"progress": "2.0.3",
|
|
192
|
-
"prompts": "0.1.8",
|
|
193
|
-
"protractor": "7.0.0",
|
|
194
|
-
"ps-list": "6.1.0",
|
|
195
|
-
"ps-node": "0.1.6",
|
|
196
|
-
"q": "1.5.1",
|
|
197
|
-
"randomcolor": "0.5.3",
|
|
198
|
-
"record-replay-req-res-scenario": "~0.0.26",
|
|
199
|
-
"reflect-metadata": "0.1.10",
|
|
200
|
-
"rimraf": "2.6.2",
|
|
201
|
-
"rxjs": "~6.6.0",
|
|
202
|
-
"rxjs-compat": "~6.5.3",
|
|
203
|
-
"simple-git": "1.96.0",
|
|
204
|
-
"sloc": "0.2.0",
|
|
205
|
-
"socket.io": "2.4.1",
|
|
206
|
-
"sort-package-json": "1.11.0",
|
|
207
|
-
"static-columns": "~2.0.16",
|
|
208
|
-
"string-similarity": "4.0.2",
|
|
209
|
-
"sudo-block": "3.0.0",
|
|
210
|
-
"systeminformation": "3.45.7",
|
|
211
|
-
"task.js": "0.1.5",
|
|
212
|
-
"tnp-cli": "~2.0.20",
|
|
213
|
-
"tnp-config": "~1.0.20",
|
|
214
|
-
"tnp-core": "~1.0.34",
|
|
215
|
-
"tnp-db": "~0.0.44",
|
|
216
|
-
"tnp-helpers": "~0.0.73",
|
|
217
|
-
"tnp-models": "~0.0.37",
|
|
218
|
-
"tnp-tools": "~0.0.46",
|
|
219
|
-
"tnp-ui": "~0.0.33",
|
|
220
|
-
"ts-loader": "7.0.4",
|
|
221
|
-
"ts-node": "8.3.0",
|
|
222
|
-
"tsickle": "0.26.0",
|
|
223
|
-
"tslib": "~2.3.0",
|
|
224
|
-
"tslint": "6.1.0",
|
|
225
|
-
"typeorm": "~0.2.7",
|
|
226
|
-
"typescript": "~4.3.5",
|
|
227
|
-
"typescript-class-helpers": "~1.0.42",
|
|
228
|
-
"typescript-formatter": "~7.2.2",
|
|
229
|
-
"uglifyjs-webpack-plugin": "2.2.0",
|
|
230
|
-
"underscore": "1.9.1",
|
|
231
|
-
"uuid": "8.3.2",
|
|
232
|
-
"validator": "9.2.0",
|
|
233
|
-
"vpn-split": "~0.0.18",
|
|
234
|
-
"watch": "1.0.2",
|
|
235
|
-
"webpack-cli": "3.3.11",
|
|
236
|
-
"zone.js": "~0.11.3"
|
|
237
|
-
}
|