static-columns 16.100.6 → 16.444.3

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 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
- ![Modules marked](screen.png)
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
+ ![Modules marked](screen.png)
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.6)
3
+ Assets from this folder are being shipped with this npm package (static-columns@16.444.3)
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.
@@ -28,7 +28,7 @@
28
28
  "smartContainerTarget": "",
29
29
  "type": "isomorphic-lib",
30
30
  "isCoreProject": false,
31
- "version": "v4",
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.100.6",
52
+ "version": "16.444.3",
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": "9cd2e1710b5fde5530a876fd8e90274f233aa021",
76
+ "lastBuildTagHash": "6fb2c0f7f9d9a19bbf70e68e60f8497e64f00b46",
77
77
  "devDependencies": {
78
78
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
79
79
  "@angular-devkit/build-angular": "~16.0.5",
@@ -100,7 +100,7 @@
100
100
  "@angular/router": "~16.0.0",
101
101
  "@angular/service-worker": "~16.0.4",
102
102
  "@babel/cli": "7.18.6",
103
- "@compodoc/compodoc": "1.1.20",
103
+ "@compodoc/compodoc": "1.1.23",
104
104
  "@iconify/icons-fa-solid": "1.2.2",
105
105
  "@iconify/icons-mdi": "1.2.1",
106
106
  "@mdi/js": "7.2.96",
@@ -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.100.10",
163
+ "any-project-cli": "16.444.4",
164
164
  "app-root-path": "3.0.0",
165
165
  "axios": "1.3.5",
166
166
  "background-worker-process": "16.100.10",
@@ -170,6 +170,7 @@
170
170
  "body-parser": "1.18.2",
171
171
  "bootstrap": "4.6.2",
172
172
  "buffer-shims": "1.0.0",
173
+ "bun": "1.0.0",
173
174
  "callsite-record": "4.1.3",
174
175
  "chai": "4.3.7",
175
176
  "chalk": "2.3.2",
@@ -189,6 +190,7 @@
189
190
  "copy-paste": "1.5.3",
190
191
  "cors": "2.8.4",
191
192
  "cpr": "3.0.1",
193
+ "cross-env": "7.0.2",
192
194
  "cross-spawn": "7.0.3",
193
195
  "dateformat": "3.0.3",
194
196
  "detect-mocha": "0.1.0",
@@ -215,13 +217,13 @@
215
217
  "file-saver": "2.0.5",
216
218
  "file-type": "18.5.0",
217
219
  "firedev": "^16",
218
- "firedev-crud": "16.100.10",
219
- "firedev-crud-deamon": "16.100.9",
220
- "firedev-ports": "16.100.10",
221
- "firedev-storage": "16.100.6",
222
- "firedev-type-sql": "16.100.7",
223
- "firedev-typeorm": "16.100.7",
224
- "firedev-ui": "16.100.8",
220
+ "firedev-crud": "16.444.4",
221
+ "firedev-crud-deamon": "16.444.4",
222
+ "firedev-ports": "16.444.4",
223
+ "firedev-storage": "16.444.4",
224
+ "firedev-type-sql": "16.444.4",
225
+ "firedev-typeorm": "16.444.4",
226
+ "firedev-ui": "16.444.1",
225
227
  "fkill": "6.1.0",
226
228
  "font-awesome": "4.7.0",
227
229
  "form-data": "4.0.0",
@@ -239,11 +241,11 @@
239
241
  "image-focus": "1.2.1",
240
242
  "immer": "10.0.2",
241
243
  "immutable": "4.3.0",
242
- "incremental-compiler": "16.100.10",
244
+ "incremental-compiler": "16.444.5",
243
245
  "inquirer": "7.3.3",
244
246
  "inquirer-autocomplete-prompt": "1.3.0",
245
247
  "is-elevated": "3.0.0",
246
- "isomorphic-region-loader": "16.100.9",
248
+ "isomorphic-region-loader": "16.444.4",
247
249
  "istanbul-instrumenter-loader": "2.0.0",
248
250
  "jest": "29.5.0",
249
251
  "jest-date-mock": "1.0.8",
@@ -254,8 +256,8 @@
254
256
  "joi": "17.9.2",
255
257
  "jscodeshift": "0.6.3",
256
258
  "json-stringify-safe": "5.0.1",
257
- "json10": "16.100.7",
258
- "json10-writer": "16.100.10",
259
+ "json10": "16.444.4",
260
+ "json10-writer": "16.444.4",
259
261
  "json5": "2.2.1",
260
262
  "json5-writer": "0.2.0",
261
263
  "jszip": "3.10.1",
@@ -264,9 +266,9 @@
264
266
  "localforage": "1.10.0",
265
267
  "lockfile": "1.0.4",
266
268
  "lodash": "4.17.20",
267
- "lodash-walk-object": "16.100.7",
269
+ "lodash-walk-object": "16.444.3",
268
270
  "lowdb": "7.0.1",
269
- "magic-renamer": "16.100.9",
271
+ "magic-renamer": "16.444.3",
270
272
  "material-design-icons": "3.0.1",
271
273
  "method-override": "2.3.10",
272
274
  "minimist": "1.2.0",
@@ -277,10 +279,10 @@
277
279
  "ng-in-viewport": "15.0.2",
278
280
  "ng-lock": "16.0.1",
279
281
  "ng-packagr": "16.0.1",
280
- "ng-talkback": "16.100.5",
281
- "ng2-logger": "16.100.10",
282
+ "ng-talkback": "16.444.1",
283
+ "ng2-logger": "16.444.4",
282
284
  "ng2-pdfjs-viewer": "16.0.4",
283
- "ng2-rest": "16.100.7",
285
+ "ng2-rest": "16.444.3",
284
286
  "ngx-ace-wrapper": "14.0.0",
285
287
  "ngx-editor": "15.3.0",
286
288
  "ngx-highlightjs": "9.0.0",
@@ -293,7 +295,7 @@
293
295
  "ngx-scrolltop": "6.0.0",
294
296
  "ngx-store": "3.1.1",
295
297
  "ngx-typed-js": "2.1.1",
296
- "node-cli-tester": "16.100.5",
298
+ "node-cli-tester": "16.444.1",
297
299
  "node-localstorage": "2.1.6",
298
300
  "node-notifier": "6.0.0",
299
301
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -322,7 +324,7 @@
322
324
  "q": "1.5.1",
323
325
  "rallax.js": "2.0.4",
324
326
  "randomcolor": "0.5.3",
325
- "record-replay-req-res-scenario": "16.100.5",
327
+ "record-replay-req-res-scenario": "16.444.1",
326
328
  "reflect-metadata": "0.1.10",
327
329
  "rimraf": "2.6.2",
328
330
  "rxjs": "~7.8.0",
@@ -333,7 +335,7 @@
333
335
  "socket.io": "2.4.1",
334
336
  "sort-package-json": "1.11.0",
335
337
  "sql.js": "1.8.0",
336
- "static-columns": "16.100.5",
338
+ "static-columns": "16.444.1",
337
339
  "string-similarity": "4.0.2",
338
340
  "sudo-block": "3.0.0",
339
341
  "supertest": "6.3.3",
@@ -341,12 +343,12 @@
341
343
  "systeminformation": "3.45.7",
342
344
  "task.js": "0.1.5",
343
345
  "threads": "1.7.0",
344
- "tnp-cli": "16.100.5",
345
- "tnp-config": "16.100.10",
346
- "tnp-core": "16.100.22",
347
- "tnp-db": "16.100.9",
348
- "tnp-helpers": "16.100.18",
349
- "tnp-models": "16.100.10",
346
+ "tnp-cli": "16.444.1",
347
+ "tnp-config": "16.444.4",
348
+ "tnp-core": "16.444.5",
349
+ "tnp-db": "16.444.3",
350
+ "tnp-helpers": "16.444.5",
351
+ "tnp-models": "16.444.4",
350
352
  "ts-debug": "1.3.0",
351
353
  "ts-json-schema-generator": "2.1.1",
352
354
  "ts-loader": "2.3.1",
@@ -354,14 +356,18 @@
354
356
  "tslib": "~2.3.0",
355
357
  "tslint": "5.9.1",
356
358
  "turndown": "7.1.2",
359
+ "typedoc": "0.25.13",
360
+ "typedoc-plugin-markdown": "4.0.3",
357
361
  "typescript": "~5.0.2",
358
- "typescript-class-helpers": "~16.100.10",
362
+ "typescript-class-helpers": "~16.444.4",
359
363
  "typescript-formatter": "~7.2.2",
360
364
  "underscore": "1.9.1",
361
365
  "uuid": "8.3.2",
362
366
  "validator": "9.2.0",
363
367
  "video.js": "8.3.0",
364
- "vpn-split": "16.100.5",
368
+ "vpn-split": "16.444.1",
369
+ "vscode": "1.1.37",
370
+ "wait-on": "7.0.1",
365
371
  "watch": "1.0.2",
366
372
  "webpack": "~5.80",
367
373
  "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": "v4",
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
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1717259101211 = void 0;
4
- function dummy1717259101211() { }
5
- exports.dummy1717259101211 = dummy1717259101211;
3
+ exports.dummy1719141580859 = void 0;
4
+ function dummy1719141580859() { }
5
+ exports.dummy1719141580859 = dummy1719141580859;
6
6
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1717259101215 = void 0;
4
- function dummy1717259101215() { }
5
- exports.dummy1717259101215 = dummy1717259101215;
3
+ exports.dummy1719141580872 = void 0;
4
+ function dummy1719141580872() { }
5
+ exports.dummy1719141580872 = dummy1719141580872;
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": "v4",
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.100.6",
52
+ "version": "16.444.3",
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": "9cd2e1710b5fde5530a876fd8e90274f233aa021",
76
+ "lastBuildTagHash": "6fb2c0f7f9d9a19bbf70e68e60f8497e64f00b46",
77
77
  "devDependencies": {},
78
78
  "main": "dist/app.electron.js"
79
79
  }
@@ -33,7 +33,7 @@
33
33
  "smartContainerTarget": "",
34
34
  "type": "isomorphic-lib",
35
35
  "isCoreProject": false,
36
- "version": "v4",
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.100.6",
57
+ "version": "16.444.3",
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": "9cd2e1710b5fde5530a876fd8e90274f233aa021",
81
+ "lastBuildTagHash": "6fb2c0f7f9d9a19bbf70e68e60f8497e64f00b46",
82
82
  "devDependencies": {
83
83
  "@angular-builders/custom-webpack": "~16.0.2-beta.2",
84
84
  "@angular-devkit/build-angular": "~16.0.5",
@@ -105,7 +105,7 @@
105
105
  "@angular/router": "~16.0.0",
106
106
  "@angular/service-worker": "~16.0.4",
107
107
  "@babel/cli": "7.18.6",
108
- "@compodoc/compodoc": "1.1.20",
108
+ "@compodoc/compodoc": "1.1.23",
109
109
  "@iconify/icons-fa-solid": "1.2.2",
110
110
  "@iconify/icons-mdi": "1.2.1",
111
111
  "@mdi/js": "7.2.96",
@@ -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.100.10",
168
+ "any-project-cli": "16.444.4",
169
169
  "app-root-path": "3.0.0",
170
170
  "axios": "1.3.5",
171
171
  "background-worker-process": "16.100.10",
@@ -175,6 +175,7 @@
175
175
  "body-parser": "1.18.2",
176
176
  "bootstrap": "4.6.2",
177
177
  "buffer-shims": "1.0.0",
178
+ "bun": "1.0.0",
178
179
  "callsite-record": "4.1.3",
179
180
  "chai": "4.3.7",
180
181
  "chalk": "2.3.2",
@@ -194,6 +195,7 @@
194
195
  "copy-paste": "1.5.3",
195
196
  "cors": "2.8.4",
196
197
  "cpr": "3.0.1",
198
+ "cross-env": "7.0.2",
197
199
  "cross-spawn": "7.0.3",
198
200
  "dateformat": "3.0.3",
199
201
  "detect-mocha": "0.1.0",
@@ -220,13 +222,13 @@
220
222
  "file-saver": "2.0.5",
221
223
  "file-type": "18.5.0",
222
224
  "firedev": "^16",
223
- "firedev-crud": "16.100.10",
224
- "firedev-crud-deamon": "16.100.9",
225
- "firedev-ports": "16.100.10",
226
- "firedev-storage": "16.100.6",
227
- "firedev-type-sql": "16.100.7",
228
- "firedev-typeorm": "16.100.7",
229
- "firedev-ui": "16.100.8",
225
+ "firedev-crud": "16.444.4",
226
+ "firedev-crud-deamon": "16.444.4",
227
+ "firedev-ports": "16.444.4",
228
+ "firedev-storage": "16.444.4",
229
+ "firedev-type-sql": "16.444.4",
230
+ "firedev-typeorm": "16.444.4",
231
+ "firedev-ui": "16.444.1",
230
232
  "fkill": "6.1.0",
231
233
  "font-awesome": "4.7.0",
232
234
  "form-data": "4.0.0",
@@ -244,11 +246,11 @@
244
246
  "image-focus": "1.2.1",
245
247
  "immer": "10.0.2",
246
248
  "immutable": "4.3.0",
247
- "incremental-compiler": "16.100.10",
249
+ "incremental-compiler": "16.444.5",
248
250
  "inquirer": "7.3.3",
249
251
  "inquirer-autocomplete-prompt": "1.3.0",
250
252
  "is-elevated": "3.0.0",
251
- "isomorphic-region-loader": "16.100.9",
253
+ "isomorphic-region-loader": "16.444.4",
252
254
  "istanbul-instrumenter-loader": "2.0.0",
253
255
  "jest": "29.5.0",
254
256
  "jest-date-mock": "1.0.8",
@@ -259,8 +261,8 @@
259
261
  "joi": "17.9.2",
260
262
  "jscodeshift": "0.6.3",
261
263
  "json-stringify-safe": "5.0.1",
262
- "json10": "16.100.7",
263
- "json10-writer": "16.100.10",
264
+ "json10": "16.444.4",
265
+ "json10-writer": "16.444.4",
264
266
  "json5": "2.2.1",
265
267
  "json5-writer": "0.2.0",
266
268
  "jszip": "3.10.1",
@@ -269,9 +271,9 @@
269
271
  "localforage": "1.10.0",
270
272
  "lockfile": "1.0.4",
271
273
  "lodash": "4.17.20",
272
- "lodash-walk-object": "16.100.7",
274
+ "lodash-walk-object": "16.444.3",
273
275
  "lowdb": "7.0.1",
274
- "magic-renamer": "16.100.9",
276
+ "magic-renamer": "16.444.3",
275
277
  "material-design-icons": "3.0.1",
276
278
  "method-override": "2.3.10",
277
279
  "minimist": "1.2.0",
@@ -282,10 +284,10 @@
282
284
  "ng-in-viewport": "15.0.2",
283
285
  "ng-lock": "16.0.1",
284
286
  "ng-packagr": "16.0.1",
285
- "ng-talkback": "16.100.5",
286
- "ng2-logger": "16.100.10",
287
+ "ng-talkback": "16.444.1",
288
+ "ng2-logger": "16.444.4",
287
289
  "ng2-pdfjs-viewer": "16.0.4",
288
- "ng2-rest": "16.100.7",
290
+ "ng2-rest": "16.444.3",
289
291
  "ngx-ace-wrapper": "14.0.0",
290
292
  "ngx-editor": "15.3.0",
291
293
  "ngx-highlightjs": "9.0.0",
@@ -298,7 +300,7 @@
298
300
  "ngx-scrolltop": "6.0.0",
299
301
  "ngx-store": "3.1.1",
300
302
  "ngx-typed-js": "2.1.1",
301
- "node-cli-tester": "16.100.5",
303
+ "node-cli-tester": "16.444.1",
302
304
  "node-localstorage": "2.1.6",
303
305
  "node-notifier": "6.0.0",
304
306
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -327,7 +329,7 @@
327
329
  "q": "1.5.1",
328
330
  "rallax.js": "2.0.4",
329
331
  "randomcolor": "0.5.3",
330
- "record-replay-req-res-scenario": "16.100.5",
332
+ "record-replay-req-res-scenario": "16.444.1",
331
333
  "reflect-metadata": "0.1.10",
332
334
  "rimraf": "2.6.2",
333
335
  "rxjs": "~7.8.0",
@@ -338,7 +340,7 @@
338
340
  "socket.io": "2.4.1",
339
341
  "sort-package-json": "1.11.0",
340
342
  "sql.js": "1.8.0",
341
- "static-columns": "16.100.5",
343
+ "static-columns": "16.444.1",
342
344
  "string-similarity": "4.0.2",
343
345
  "sudo-block": "3.0.0",
344
346
  "supertest": "6.3.3",
@@ -346,12 +348,12 @@
346
348
  "systeminformation": "3.45.7",
347
349
  "task.js": "0.1.5",
348
350
  "threads": "1.7.0",
349
- "tnp-cli": "16.100.5",
350
- "tnp-config": "16.100.10",
351
- "tnp-core": "16.100.22",
352
- "tnp-db": "16.100.9",
353
- "tnp-helpers": "16.100.18",
354
- "tnp-models": "16.100.10",
351
+ "tnp-cli": "16.444.1",
352
+ "tnp-config": "16.444.4",
353
+ "tnp-core": "16.444.5",
354
+ "tnp-db": "16.444.3",
355
+ "tnp-helpers": "16.444.5",
356
+ "tnp-models": "16.444.4",
355
357
  "ts-debug": "1.3.0",
356
358
  "ts-json-schema-generator": "2.1.1",
357
359
  "ts-loader": "2.3.1",
@@ -359,14 +361,18 @@
359
361
  "tslib": "~2.3.0",
360
362
  "tslint": "5.9.1",
361
363
  "turndown": "7.1.2",
364
+ "typedoc": "0.25.13",
365
+ "typedoc-plugin-markdown": "4.0.3",
362
366
  "typescript": "~5.0.2",
363
- "typescript-class-helpers": "~16.100.10",
367
+ "typescript-class-helpers": "~16.444.4",
364
368
  "typescript-formatter": "~7.2.2",
365
369
  "underscore": "1.9.1",
366
370
  "uuid": "8.3.2",
367
371
  "validator": "9.2.0",
368
372
  "video.js": "8.3.0",
369
- "vpn-split": "16.100.5",
373
+ "vpn-split": "16.444.1",
374
+ "vscode": "1.1.37",
375
+ "wait-on": "7.0.1",
370
376
  "watch": "1.0.2",
371
377
  "webpack": "~5.80",
372
378
  "webpack-dev-middleware": "~6.0.2",
@@ -377,14 +383,14 @@
377
383
  "main": "dist/app.electron.js"
378
384
  },
379
385
  "build": {
380
- "number": 384,
381
- "date": "2024-06-01T10:45:59.000Z",
382
- "hash": "92d9d09fa5a451b739dcb2896eff0c437a02e419"
386
+ "number": 389,
387
+ "date": "2024-06-22T08:01:44.000Z",
388
+ "hash": "737ecd4b28103c28292ce13a55e3449853a87daa"
383
389
  },
384
390
  "currentProjectName": "static-columns",
385
391
  "currentProjectGenericName": "static-columns",
386
392
  "currentProjectType": "isomorphic-lib",
387
- "currentFrameworkVersion": "16.100.21",
393
+ "currentFrameworkVersion": "16.444.4",
388
394
  "isStandaloneProject": true,
389
395
  "isSmartContainer": false,
390
396
  "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.