static-columns 16.100.6 → 16.444.1
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 +29 -26
- package/firedev.jsonc +52 -52
- package/lib/column/index.js +3 -3
- package/lib/columns-gap/index.js +3 -3
- package/package.json +3 -3
- package/tmp-environment.json +33 -30
- package/websql/README.md +24 -24
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.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (static-columns@16.444.1)
|
|
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
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"smartContainerTarget": "",
|
|
29
29
|
"type": "isomorphic-lib",
|
|
30
30
|
"isCoreProject": false,
|
|
31
|
-
"version": "
|
|
31
|
+
"version": "v16",
|
|
32
32
|
"isGenerated": false,
|
|
33
33
|
"useFramework": false,
|
|
34
34
|
"license": "MIT",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"workerPlugins": {}
|
|
50
50
|
},
|
|
51
51
|
"name": "static-columns",
|
|
52
|
-
"version": "16.
|
|
52
|
+
"version": "16.444.1",
|
|
53
53
|
"description": "Static columns with flexbox for Agnular2",
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
74
74
|
"dependencies": {},
|
|
75
75
|
"private": false,
|
|
76
|
-
"lastBuildTagHash": "
|
|
76
|
+
"lastBuildTagHash": "92d9d09fa5a451b739dcb2896eff0c437a02e419",
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
79
79
|
"@angular-devkit/build-angular": "~16.0.5",
|
|
@@ -160,7 +160,7 @@
|
|
|
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": "16.
|
|
163
|
+
"any-project-cli": "16.444.1",
|
|
164
164
|
"app-root-path": "3.0.0",
|
|
165
165
|
"axios": "1.3.5",
|
|
166
166
|
"background-worker-process": "16.100.10",
|
|
@@ -189,6 +189,7 @@
|
|
|
189
189
|
"copy-paste": "1.5.3",
|
|
190
190
|
"cors": "2.8.4",
|
|
191
191
|
"cpr": "3.0.1",
|
|
192
|
+
"cross-env": "7.0.2",
|
|
192
193
|
"cross-spawn": "7.0.3",
|
|
193
194
|
"dateformat": "3.0.3",
|
|
194
195
|
"detect-mocha": "0.1.0",
|
|
@@ -215,13 +216,13 @@
|
|
|
215
216
|
"file-saver": "2.0.5",
|
|
216
217
|
"file-type": "18.5.0",
|
|
217
218
|
"firedev": "^16",
|
|
218
|
-
"firedev-crud": "16.
|
|
219
|
-
"firedev-crud-deamon": "16.
|
|
220
|
-
"firedev-ports": "16.
|
|
221
|
-
"firedev-storage": "16.
|
|
222
|
-
"firedev-type-sql": "16.
|
|
223
|
-
"firedev-typeorm": "16.
|
|
224
|
-
"firedev-ui": "16.100.
|
|
219
|
+
"firedev-crud": "16.444.1",
|
|
220
|
+
"firedev-crud-deamon": "16.444.1",
|
|
221
|
+
"firedev-ports": "16.444.1",
|
|
222
|
+
"firedev-storage": "16.444.1",
|
|
223
|
+
"firedev-type-sql": "16.444.1",
|
|
224
|
+
"firedev-typeorm": "16.444.1",
|
|
225
|
+
"firedev-ui": "16.100.10",
|
|
225
226
|
"fkill": "6.1.0",
|
|
226
227
|
"font-awesome": "4.7.0",
|
|
227
228
|
"form-data": "4.0.0",
|
|
@@ -239,11 +240,11 @@
|
|
|
239
240
|
"image-focus": "1.2.1",
|
|
240
241
|
"immer": "10.0.2",
|
|
241
242
|
"immutable": "4.3.0",
|
|
242
|
-
"incremental-compiler": "16.
|
|
243
|
+
"incremental-compiler": "16.444.2",
|
|
243
244
|
"inquirer": "7.3.3",
|
|
244
245
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
245
246
|
"is-elevated": "3.0.0",
|
|
246
|
-
"isomorphic-region-loader": "16.
|
|
247
|
+
"isomorphic-region-loader": "16.444.1",
|
|
247
248
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
248
249
|
"jest": "29.5.0",
|
|
249
250
|
"jest-date-mock": "1.0.8",
|
|
@@ -254,8 +255,8 @@
|
|
|
254
255
|
"joi": "17.9.2",
|
|
255
256
|
"jscodeshift": "0.6.3",
|
|
256
257
|
"json-stringify-safe": "5.0.1",
|
|
257
|
-
"json10": "16.
|
|
258
|
-
"json10-writer": "16.
|
|
258
|
+
"json10": "16.444.1",
|
|
259
|
+
"json10-writer": "16.444.2",
|
|
259
260
|
"json5": "2.2.1",
|
|
260
261
|
"json5-writer": "0.2.0",
|
|
261
262
|
"jszip": "3.10.1",
|
|
@@ -264,9 +265,9 @@
|
|
|
264
265
|
"localforage": "1.10.0",
|
|
265
266
|
"lockfile": "1.0.4",
|
|
266
267
|
"lodash": "4.17.20",
|
|
267
|
-
"lodash-walk-object": "16.
|
|
268
|
+
"lodash-walk-object": "16.444.1",
|
|
268
269
|
"lowdb": "7.0.1",
|
|
269
|
-
"magic-renamer": "16.
|
|
270
|
+
"magic-renamer": "16.444.1",
|
|
270
271
|
"material-design-icons": "3.0.1",
|
|
271
272
|
"method-override": "2.3.10",
|
|
272
273
|
"minimist": "1.2.0",
|
|
@@ -278,9 +279,9 @@
|
|
|
278
279
|
"ng-lock": "16.0.1",
|
|
279
280
|
"ng-packagr": "16.0.1",
|
|
280
281
|
"ng-talkback": "16.100.5",
|
|
281
|
-
"ng2-logger": "16.
|
|
282
|
+
"ng2-logger": "16.444.2",
|
|
282
283
|
"ng2-pdfjs-viewer": "16.0.4",
|
|
283
|
-
"ng2-rest": "16.
|
|
284
|
+
"ng2-rest": "16.444.1",
|
|
284
285
|
"ngx-ace-wrapper": "14.0.0",
|
|
285
286
|
"ngx-editor": "15.3.0",
|
|
286
287
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -333,7 +334,7 @@
|
|
|
333
334
|
"socket.io": "2.4.1",
|
|
334
335
|
"sort-package-json": "1.11.0",
|
|
335
336
|
"sql.js": "1.8.0",
|
|
336
|
-
"static-columns": "16.100.
|
|
337
|
+
"static-columns": "16.100.6",
|
|
337
338
|
"string-similarity": "4.0.2",
|
|
338
339
|
"sudo-block": "3.0.0",
|
|
339
340
|
"supertest": "6.3.3",
|
|
@@ -342,11 +343,11 @@
|
|
|
342
343
|
"task.js": "0.1.5",
|
|
343
344
|
"threads": "1.7.0",
|
|
344
345
|
"tnp-cli": "16.100.5",
|
|
345
|
-
"tnp-config": "16.
|
|
346
|
-
"tnp-core": "16.
|
|
347
|
-
"tnp-db": "16.
|
|
348
|
-
"tnp-helpers": "16.
|
|
349
|
-
"tnp-models": "16.
|
|
346
|
+
"tnp-config": "16.444.2",
|
|
347
|
+
"tnp-core": "16.444.2",
|
|
348
|
+
"tnp-db": "16.444.1",
|
|
349
|
+
"tnp-helpers": "16.444.2",
|
|
350
|
+
"tnp-models": "16.444.2",
|
|
350
351
|
"ts-debug": "1.3.0",
|
|
351
352
|
"ts-json-schema-generator": "2.1.1",
|
|
352
353
|
"ts-loader": "2.3.1",
|
|
@@ -355,13 +356,15 @@
|
|
|
355
356
|
"tslint": "5.9.1",
|
|
356
357
|
"turndown": "7.1.2",
|
|
357
358
|
"typescript": "~5.0.2",
|
|
358
|
-
"typescript-class-helpers": "~16.
|
|
359
|
+
"typescript-class-helpers": "~16.444.2",
|
|
359
360
|
"typescript-formatter": "~7.2.2",
|
|
360
361
|
"underscore": "1.9.1",
|
|
361
362
|
"uuid": "8.3.2",
|
|
362
363
|
"validator": "9.2.0",
|
|
363
364
|
"video.js": "8.3.0",
|
|
364
365
|
"vpn-split": "16.100.5",
|
|
366
|
+
"vscode": "1.1.37",
|
|
367
|
+
"wait-on": "7.0.1",
|
|
365
368
|
"watch": "1.0.2",
|
|
366
369
|
"webpack": "~5.80",
|
|
367
370
|
"webpack-dev-middleware": "~6.0.2",
|
package/firedev.jsonc
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": ["README.md", "screen.png"],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"ignoreDepsPattern": [],
|
|
6
|
-
"includeAsDev": "*",
|
|
7
|
-
"includeOnly": [],
|
|
8
|
-
"dependencies": {},
|
|
9
|
-
"linkedFolders": [],
|
|
10
|
-
"npmFixes": [],
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
"linkedProjects": [],
|
|
14
|
-
"smartContainerBuildTarget": "",
|
|
15
|
-
"linkedRepos": [],
|
|
16
|
-
|
|
17
|
-
"libReleaseOptions": {
|
|
18
|
-
"nodts": false,
|
|
19
|
-
"obscure": false,
|
|
20
|
-
"ugly": false,
|
|
21
|
-
"includeNodeModules": false,
|
|
22
|
-
"cliBuildNoDts": false,
|
|
23
|
-
"cliBuildObscure": false,
|
|
24
|
-
"cliBuildIncludeNodeModules": false,
|
|
25
|
-
"cliBuildUglify": false,
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
"smartContainerTarget": "",
|
|
29
|
-
"type": "isomorphic-lib",
|
|
30
|
-
"isCoreProject": false,
|
|
31
|
-
"version": "
|
|
32
|
-
"isGenerated": false,
|
|
33
|
-
"useFramework": false,
|
|
34
|
-
"license": "MIT",
|
|
35
|
-
"private": false,
|
|
36
|
-
"description": "Static columns with flexbox for Agnular2",
|
|
37
|
-
"author": "Dariusz Filipiak",
|
|
38
|
-
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
39
|
-
|
|
40
|
-
"keywords": [
|
|
41
|
-
"angular2",
|
|
42
|
-
"static",
|
|
43
|
-
"width",
|
|
44
|
-
"column",
|
|
45
|
-
"static",
|
|
46
|
-
"columns",
|
|
47
|
-
"flexbox",
|
|
48
|
-
"columns",
|
|
49
|
-
],
|
|
50
|
-
|
|
51
|
-
"workerPlugins": {},
|
|
52
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"resources": ["README.md", "screen.png"],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"ignoreDepsPattern": [],
|
|
6
|
+
"includeAsDev": "*",
|
|
7
|
+
"includeOnly": [],
|
|
8
|
+
"dependencies": {},
|
|
9
|
+
"linkedFolders": [],
|
|
10
|
+
"npmFixes": [],
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"linkedProjects": [],
|
|
14
|
+
"smartContainerBuildTarget": "",
|
|
15
|
+
"linkedRepos": [],
|
|
16
|
+
|
|
17
|
+
"libReleaseOptions": {
|
|
18
|
+
"nodts": false,
|
|
19
|
+
"obscure": false,
|
|
20
|
+
"ugly": false,
|
|
21
|
+
"includeNodeModules": false,
|
|
22
|
+
"cliBuildNoDts": false,
|
|
23
|
+
"cliBuildObscure": false,
|
|
24
|
+
"cliBuildIncludeNodeModules": false,
|
|
25
|
+
"cliBuildUglify": false,
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
"smartContainerTarget": "",
|
|
29
|
+
"type": "isomorphic-lib",
|
|
30
|
+
"isCoreProject": false,
|
|
31
|
+
"version": "v16",
|
|
32
|
+
"isGenerated": false,
|
|
33
|
+
"useFramework": false,
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"private": false,
|
|
36
|
+
"description": "Static columns with flexbox for Agnular2",
|
|
37
|
+
"author": "Dariusz Filipiak",
|
|
38
|
+
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
39
|
+
|
|
40
|
+
"keywords": [
|
|
41
|
+
"angular2",
|
|
42
|
+
"static",
|
|
43
|
+
"width",
|
|
44
|
+
"column",
|
|
45
|
+
"static",
|
|
46
|
+
"columns",
|
|
47
|
+
"flexbox",
|
|
48
|
+
"columns",
|
|
49
|
+
],
|
|
50
|
+
|
|
51
|
+
"workerPlugins": {},
|
|
52
|
+
}
|
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.dummy1717590713868 = void 0;
|
|
4
|
+
function dummy1717590713868() { }
|
|
5
|
+
exports.dummy1717590713868 = dummy1717590713868;
|
|
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.dummy1717590713884 = void 0;
|
|
4
|
+
function dummy1717590713884() { }
|
|
5
|
+
exports.dummy1717590713884 = dummy1717590713884;
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"smartContainerTarget": "",
|
|
29
29
|
"type": "isomorphic-lib",
|
|
30
30
|
"isCoreProject": false,
|
|
31
|
-
"version": "
|
|
31
|
+
"version": "v16",
|
|
32
32
|
"isGenerated": false,
|
|
33
33
|
"useFramework": false,
|
|
34
34
|
"license": "MIT",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"workerPlugins": {}
|
|
50
50
|
},
|
|
51
51
|
"name": "static-columns",
|
|
52
|
-
"version": "16.
|
|
52
|
+
"version": "16.444.1",
|
|
53
53
|
"description": "Static columns with flexbox for Agnular2",
|
|
54
54
|
"repository": {
|
|
55
55
|
"type": "git",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
74
74
|
"dependencies": {},
|
|
75
75
|
"private": false,
|
|
76
|
-
"lastBuildTagHash": "
|
|
76
|
+
"lastBuildTagHash": "92d9d09fa5a451b739dcb2896eff0c437a02e419",
|
|
77
77
|
"devDependencies": {},
|
|
78
78
|
"main": "dist/app.electron.js"
|
|
79
79
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"smartContainerTarget": "",
|
|
34
34
|
"type": "isomorphic-lib",
|
|
35
35
|
"isCoreProject": false,
|
|
36
|
-
"version": "
|
|
36
|
+
"version": "v16",
|
|
37
37
|
"isGenerated": false,
|
|
38
38
|
"useFramework": false,
|
|
39
39
|
"license": "MIT",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"workerPlugins": {}
|
|
55
55
|
},
|
|
56
56
|
"name": "static-columns",
|
|
57
|
-
"version": "16.
|
|
57
|
+
"version": "16.444.1",
|
|
58
58
|
"description": "Static columns with flexbox for Agnular2",
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"homepage": "https://github.com/darekf77/static-columns#readme",
|
|
79
79
|
"dependencies": {},
|
|
80
80
|
"private": false,
|
|
81
|
-
"lastBuildTagHash": "
|
|
81
|
+
"lastBuildTagHash": "92d9d09fa5a451b739dcb2896eff0c437a02e419",
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
84
84
|
"@angular-devkit/build-angular": "~16.0.5",
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"angular-material-css-vars": "5.0.2",
|
|
166
166
|
"angular-resize-event": "3.2.0",
|
|
167
167
|
"animate.css": "4.1.1 ",
|
|
168
|
-
"any-project-cli": "16.
|
|
168
|
+
"any-project-cli": "16.444.1",
|
|
169
169
|
"app-root-path": "3.0.0",
|
|
170
170
|
"axios": "1.3.5",
|
|
171
171
|
"background-worker-process": "16.100.10",
|
|
@@ -194,6 +194,7 @@
|
|
|
194
194
|
"copy-paste": "1.5.3",
|
|
195
195
|
"cors": "2.8.4",
|
|
196
196
|
"cpr": "3.0.1",
|
|
197
|
+
"cross-env": "7.0.2",
|
|
197
198
|
"cross-spawn": "7.0.3",
|
|
198
199
|
"dateformat": "3.0.3",
|
|
199
200
|
"detect-mocha": "0.1.0",
|
|
@@ -220,13 +221,13 @@
|
|
|
220
221
|
"file-saver": "2.0.5",
|
|
221
222
|
"file-type": "18.5.0",
|
|
222
223
|
"firedev": "^16",
|
|
223
|
-
"firedev-crud": "16.
|
|
224
|
-
"firedev-crud-deamon": "16.
|
|
225
|
-
"firedev-ports": "16.
|
|
226
|
-
"firedev-storage": "16.
|
|
227
|
-
"firedev-type-sql": "16.
|
|
228
|
-
"firedev-typeorm": "16.
|
|
229
|
-
"firedev-ui": "16.100.
|
|
224
|
+
"firedev-crud": "16.444.1",
|
|
225
|
+
"firedev-crud-deamon": "16.444.1",
|
|
226
|
+
"firedev-ports": "16.444.1",
|
|
227
|
+
"firedev-storage": "16.444.1",
|
|
228
|
+
"firedev-type-sql": "16.444.1",
|
|
229
|
+
"firedev-typeorm": "16.444.1",
|
|
230
|
+
"firedev-ui": "16.100.10",
|
|
230
231
|
"fkill": "6.1.0",
|
|
231
232
|
"font-awesome": "4.7.0",
|
|
232
233
|
"form-data": "4.0.0",
|
|
@@ -244,11 +245,11 @@
|
|
|
244
245
|
"image-focus": "1.2.1",
|
|
245
246
|
"immer": "10.0.2",
|
|
246
247
|
"immutable": "4.3.0",
|
|
247
|
-
"incremental-compiler": "16.
|
|
248
|
+
"incremental-compiler": "16.444.2",
|
|
248
249
|
"inquirer": "7.3.3",
|
|
249
250
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
250
251
|
"is-elevated": "3.0.0",
|
|
251
|
-
"isomorphic-region-loader": "16.
|
|
252
|
+
"isomorphic-region-loader": "16.444.1",
|
|
252
253
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
253
254
|
"jest": "29.5.0",
|
|
254
255
|
"jest-date-mock": "1.0.8",
|
|
@@ -259,8 +260,8 @@
|
|
|
259
260
|
"joi": "17.9.2",
|
|
260
261
|
"jscodeshift": "0.6.3",
|
|
261
262
|
"json-stringify-safe": "5.0.1",
|
|
262
|
-
"json10": "16.
|
|
263
|
-
"json10-writer": "16.
|
|
263
|
+
"json10": "16.444.1",
|
|
264
|
+
"json10-writer": "16.444.2",
|
|
264
265
|
"json5": "2.2.1",
|
|
265
266
|
"json5-writer": "0.2.0",
|
|
266
267
|
"jszip": "3.10.1",
|
|
@@ -269,9 +270,9 @@
|
|
|
269
270
|
"localforage": "1.10.0",
|
|
270
271
|
"lockfile": "1.0.4",
|
|
271
272
|
"lodash": "4.17.20",
|
|
272
|
-
"lodash-walk-object": "16.
|
|
273
|
+
"lodash-walk-object": "16.444.1",
|
|
273
274
|
"lowdb": "7.0.1",
|
|
274
|
-
"magic-renamer": "16.
|
|
275
|
+
"magic-renamer": "16.444.1",
|
|
275
276
|
"material-design-icons": "3.0.1",
|
|
276
277
|
"method-override": "2.3.10",
|
|
277
278
|
"minimist": "1.2.0",
|
|
@@ -283,9 +284,9 @@
|
|
|
283
284
|
"ng-lock": "16.0.1",
|
|
284
285
|
"ng-packagr": "16.0.1",
|
|
285
286
|
"ng-talkback": "16.100.5",
|
|
286
|
-
"ng2-logger": "16.
|
|
287
|
+
"ng2-logger": "16.444.2",
|
|
287
288
|
"ng2-pdfjs-viewer": "16.0.4",
|
|
288
|
-
"ng2-rest": "16.
|
|
289
|
+
"ng2-rest": "16.444.1",
|
|
289
290
|
"ngx-ace-wrapper": "14.0.0",
|
|
290
291
|
"ngx-editor": "15.3.0",
|
|
291
292
|
"ngx-highlightjs": "9.0.0",
|
|
@@ -338,7 +339,7 @@
|
|
|
338
339
|
"socket.io": "2.4.1",
|
|
339
340
|
"sort-package-json": "1.11.0",
|
|
340
341
|
"sql.js": "1.8.0",
|
|
341
|
-
"static-columns": "16.100.
|
|
342
|
+
"static-columns": "16.100.6",
|
|
342
343
|
"string-similarity": "4.0.2",
|
|
343
344
|
"sudo-block": "3.0.0",
|
|
344
345
|
"supertest": "6.3.3",
|
|
@@ -347,11 +348,11 @@
|
|
|
347
348
|
"task.js": "0.1.5",
|
|
348
349
|
"threads": "1.7.0",
|
|
349
350
|
"tnp-cli": "16.100.5",
|
|
350
|
-
"tnp-config": "16.
|
|
351
|
-
"tnp-core": "16.
|
|
352
|
-
"tnp-db": "16.
|
|
353
|
-
"tnp-helpers": "16.
|
|
354
|
-
"tnp-models": "16.
|
|
351
|
+
"tnp-config": "16.444.2",
|
|
352
|
+
"tnp-core": "16.444.2",
|
|
353
|
+
"tnp-db": "16.444.1",
|
|
354
|
+
"tnp-helpers": "16.444.2",
|
|
355
|
+
"tnp-models": "16.444.2",
|
|
355
356
|
"ts-debug": "1.3.0",
|
|
356
357
|
"ts-json-schema-generator": "2.1.1",
|
|
357
358
|
"ts-loader": "2.3.1",
|
|
@@ -360,13 +361,15 @@
|
|
|
360
361
|
"tslint": "5.9.1",
|
|
361
362
|
"turndown": "7.1.2",
|
|
362
363
|
"typescript": "~5.0.2",
|
|
363
|
-
"typescript-class-helpers": "~16.
|
|
364
|
+
"typescript-class-helpers": "~16.444.2",
|
|
364
365
|
"typescript-formatter": "~7.2.2",
|
|
365
366
|
"underscore": "1.9.1",
|
|
366
367
|
"uuid": "8.3.2",
|
|
367
368
|
"validator": "9.2.0",
|
|
368
369
|
"video.js": "8.3.0",
|
|
369
370
|
"vpn-split": "16.100.5",
|
|
371
|
+
"vscode": "1.1.37",
|
|
372
|
+
"wait-on": "7.0.1",
|
|
370
373
|
"watch": "1.0.2",
|
|
371
374
|
"webpack": "~5.80",
|
|
372
375
|
"webpack-dev-middleware": "~6.0.2",
|
|
@@ -377,14 +380,14 @@
|
|
|
377
380
|
"main": "dist/app.electron.js"
|
|
378
381
|
},
|
|
379
382
|
"build": {
|
|
380
|
-
"number":
|
|
381
|
-
"date": "2024-06-
|
|
382
|
-
"hash": "
|
|
383
|
+
"number": 386,
|
|
384
|
+
"date": "2024-06-05T11:35:13.000Z",
|
|
385
|
+
"hash": "6fb2c0f7f9d9a19bbf70e68e60f8497e64f00b46"
|
|
383
386
|
},
|
|
384
387
|
"currentProjectName": "static-columns",
|
|
385
388
|
"currentProjectGenericName": "static-columns",
|
|
386
389
|
"currentProjectType": "isomorphic-lib",
|
|
387
|
-
"currentFrameworkVersion": "16.
|
|
390
|
+
"currentFrameworkVersion": "16.444.1",
|
|
388
391
|
"isStandaloneProject": true,
|
|
389
392
|
"isSmartContainer": false,
|
|
390
393
|
"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.
|