static-columns 18.0.3 → 18.0.5

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@18.0.3)
3
+ Assets from this folder are being shipped with this npm package (static-columns@18.0.5)
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/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": "v18",
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": {}
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": "v18",
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
52
  }
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1723553513512 = dummy1723553513512;
4
- function dummy1723553513512() { }
3
+ exports.dummy1723627041711 = dummy1723627041711;
4
+ function dummy1723627041711() { }
5
5
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1723553513517 = dummy1723553513517;
4
- function dummy1723553513517() { }
3
+ exports.dummy1723627041727 = dummy1723627041727;
4
+ function dummy1723627041727() { }
5
5
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "workerPlugins": {}
50
50
  },
51
51
  "name": "static-columns",
52
- "version": "18.0.3",
52
+ "version": "18.0.5",
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": "087cf4f072005fa0829e447c194ccd49f6ca3b72",
76
+ "lastBuildTagHash": "012351a2d0a0d60d102b0900dceb517bcc594936",
77
77
  "devDependencies": {},
78
78
  "main": "dist/app.electron.js"
79
79
  }
@@ -54,7 +54,7 @@
54
54
  "workerPlugins": {}
55
55
  },
56
56
  "name": "static-columns",
57
- "version": "18.0.3",
57
+ "version": "18.0.5",
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": "087cf4f072005fa0829e447c194ccd49f6ca3b72",
81
+ "lastBuildTagHash": "012351a2d0a0d60d102b0900dceb517bcc594936",
82
82
  "devDependencies": {
83
83
  "@angular-builders/custom-webpack": "~18.0.0",
84
84
  "@angular-devkit/build-angular": "~18.1.4",
@@ -137,7 +137,7 @@
137
137
  "@types/diff": "5.2.1",
138
138
  "@types/express": "4.17.21",
139
139
  "@types/express-fileupload": "1.5.0",
140
- "@types/fs-extra": "11.0.4",
140
+ "@types/fs-extra": "7.0.0",
141
141
  "@types/glob": "5.0.35",
142
142
  "@types/http-proxy": "1.17.15",
143
143
  "@types/http-proxy-middleware": "1.0.0",
@@ -153,7 +153,7 @@
153
153
  "@types/password-hash": "1.2.24",
154
154
  "@types/progress": "2.0.7",
155
155
  "@types/q": "1.5.8",
156
- "@types/rimraf": "4.0.5",
156
+ "@types/rimraf": "2.0.2",
157
157
  "@types/semver": "7.5.8",
158
158
  "@types/systeminformation": "3.54.1",
159
159
  "@types/vinyl": "2.0.12",
@@ -166,7 +166,7 @@
166
166
  "angular-material-css-vars": "7.0.0",
167
167
  "angular-resize-event": "3.2.0",
168
168
  "animate.css": "4.1.1",
169
- "any-project-cli": "~18.0.2",
169
+ "any-project-cli": "~18.0.4",
170
170
  "app-root-path": "3.1.0",
171
171
  "axios": "1.7.3",
172
172
  "background-worker-process": "~16.100.10",
@@ -200,9 +200,9 @@
200
200
  "dateformat": "3.0.3",
201
201
  "detect-mocha": "0.1.0",
202
202
  "diff": "4.0.2",
203
- "electron": "31.3.1",
204
- "electron-builder": "24.13.3",
205
- "electron-debug": "4.0.0",
203
+ "electron": "25.2.0",
204
+ "electron-builder": "24.4.0",
205
+ "electron-debug": "3.2.0",
206
206
  "electron-reloader": "1.2.3",
207
207
  "element-resize-detector": "1.2.4",
208
208
  "enquirer": "2.4.1",
@@ -222,17 +222,17 @@
222
222
  "file-saver": "2.0.5",
223
223
  "file-type": "19.1.1",
224
224
  "firedev": "^18",
225
- "firedev-crud": "~18.0.1",
226
- "firedev-crud-deamon": "~18.0.2",
227
- "firedev-ports": "~18.0.1",
228
- "firedev-storage": "~18.0.1",
229
- "firedev-type-sql": "~18.0.2",
230
- "firedev-typeorm": "~18.0.1",
231
- "firedev-ui": "~16.444.1",
225
+ "firedev-crud": "~18.0.3",
226
+ "firedev-crud-deamon": "~18.0.4",
227
+ "firedev-ports": "~18.0.3",
228
+ "firedev-storage": "~18.0.3",
229
+ "firedev-type-sql": "~18.0.4",
230
+ "firedev-typeorm": "~18.0.3",
231
+ "firedev-ui": "~18.0.3",
232
232
  "fkill": "6.1.0",
233
233
  "font-awesome": "4.7.0",
234
234
  "form-data": "4.0.0",
235
- "fs-extra": "11.1.1",
235
+ "fs-extra": "8.1.0",
236
236
  "fuzzy": "0.1.3",
237
237
  "glob": "7.1.2",
238
238
  "google-libphonenumber": "3.2.38",
@@ -246,11 +246,11 @@
246
246
  "image-focus": "1.2.1",
247
247
  "immer": "10.0.2",
248
248
  "immutable": "4.3.7",
249
- "incremental-compiler": "~18.0.2",
249
+ "incremental-compiler": "~18.0.4",
250
250
  "inquirer": "7.3.3",
251
251
  "inquirer-autocomplete-prompt": "1.3.0",
252
252
  "is-elevated": "3.0.0",
253
- "isomorphic-region-loader": "~18.0.2",
253
+ "isomorphic-region-loader": "~18.0.4",
254
254
  "istanbul-instrumenter-loader": "3.0.1",
255
255
  "jest": "29.7.0",
256
256
  "jest-date-mock": "1.0.10",
@@ -261,8 +261,8 @@
261
261
  "joi": "17.13.3",
262
262
  "jscodeshift": "0.6.3",
263
263
  "json-stringify-safe": "5.0.1",
264
- "json10": "~18.0.2",
265
- "json10-writer": "~18.0.2",
264
+ "json10": "~18.0.4",
265
+ "json10-writer": "~18.0.4",
266
266
  "json5": "2.2.3",
267
267
  "json5-writer": "0.2.0",
268
268
  "jszip": "3.10.1",
@@ -271,9 +271,9 @@
271
271
  "localforage": "1.10.0",
272
272
  "lockfile": "1.0.4",
273
273
  "lodash": "4.17.21",
274
- "lodash-walk-object": "~18.0.2",
274
+ "lodash-walk-object": "~18.0.4",
275
275
  "lowdb": "7.0.1",
276
- "magic-renamer": "~18.0.2",
276
+ "magic-renamer": "~18.0.4",
277
277
  "material-design-icons": "3.0.1",
278
278
  "method-override": "2.3.10",
279
279
  "minimist": "1.2.8",
@@ -284,10 +284,10 @@
284
284
  "ng-in-viewport": "16.1.0",
285
285
  "ng-lock": "18.0.1",
286
286
  "ng-packagr": "18.1.0",
287
- "ng-talkback": "~16.444.7",
288
- "ng2-logger": "~18.0.4",
287
+ "ng-talkback": "~18.0.2",
288
+ "ng2-logger": "~18.0.6",
289
289
  "ng2-pdfjs-viewer": "18.0.0",
290
- "ng2-rest": "~18.0.2",
290
+ "ng2-rest": "~18.0.4",
291
291
  "ngx-ace-wrapper": "17.0.0",
292
292
  "ngx-editor": "17.5.4",
293
293
  "ngx-highlightjs": "12.0.0",
@@ -300,7 +300,7 @@
300
300
  "ngx-scrolltop": "18.0.0",
301
301
  "ngx-store": "3.1.1",
302
302
  "ngx-typed-js": "2.1.1",
303
- "node-cli-tester": "~16.444.7",
303
+ "node-cli-tester": "~18.0.2",
304
304
  "node-localstorage": "2.1.6",
305
305
  "node-notifier": "10.0.1",
306
306
  "node-polyfill-webpack-plugin": "2.0.1",
@@ -309,12 +309,13 @@
309
309
  "npm-run": "4.1.2",
310
310
  "omelette": "0.4.17",
311
311
  "open": "10.0.4",
312
- "ora": "8.0.1",
312
+ "ora": "3.4.0",
313
313
  "passport": "0.7.0",
314
314
  "passport-http-bearer": "1.0.1",
315
315
  "password-hash": "1.2.2",
316
316
  "path-to-regexp": "6.2.2",
317
317
  "pica": "9.0.1",
318
+ "playwright": "1.43.1",
318
319
  "portfinder": "1.0.21",
319
320
  "prettier": "3.3.3",
320
321
  "prettier-eslint": "16.3.0",
@@ -329,7 +330,7 @@
329
330
  "q": "1.5.1",
330
331
  "rallax.js": "2.0.4",
331
332
  "randomcolor": "0.5.3",
332
- "record-replay-req-res-scenario": "~16.444.7",
333
+ "record-replay-req-res-scenario": "~18.0.2",
333
334
  "reflect-metadata": "0.2.2",
334
335
  "rimraf": "2.6.2",
335
336
  "rxjs": "~7.8.1",
@@ -341,7 +342,7 @@
341
342
  "socket.io-client": "4.7.5",
342
343
  "sort-package-json": "1.11.0",
343
344
  "sql.js": "1.8.0",
344
- "static-columns": "~16.444.10",
345
+ "static-columns": "~18.0.4",
345
346
  "string-similarity": "4.0.4",
346
347
  "sudo-block": "3.0.0",
347
348
  "supertest": "7.0.0",
@@ -349,13 +350,13 @@
349
350
  "systeminformation": "3.45.7",
350
351
  "task.js": "0.1.5",
351
352
  "threads": "1.7.0",
352
- "tnp": "~18.0.2",
353
- "tnp-cli": "~16.444.7",
354
- "tnp-config": "~18.0.4",
355
- "tnp-core": "~18.0.26",
356
- "tnp-db": "~18.0.2",
357
- "tnp-helpers": "~18.0.2",
358
- "tnp-models": "~18.0.3",
353
+ "tnp": "~18.0.4",
354
+ "tnp-cli": "~18.0.2",
355
+ "tnp-config": "~18.0.6",
356
+ "tnp-core": "~18.0.28",
357
+ "tnp-db": "~18.0.4",
358
+ "tnp-helpers": "~18.0.4",
359
+ "tnp-models": "~18.0.5",
359
360
  "ts-debug": "1.3.0",
360
361
  "ts-json-schema-generator": "2.3.0-next.5",
361
362
  "ts-loader": "2.3.1",
@@ -366,13 +367,13 @@
366
367
  "typedoc": "0.26.5",
367
368
  "typedoc-plugin-markdown": "4.2.3",
368
369
  "typescript": "~5.5.4",
369
- "typescript-class-helpers": "~18.0.3",
370
+ "typescript-class-helpers": "~18.0.5",
370
371
  "typescript-formatter": "~7.2.2",
371
372
  "underscore": "1.13.7",
372
373
  "uuid": "10.0.0",
373
374
  "validator": "13.5.2",
374
375
  "video.js": "8.3.0",
375
- "vpn-split": "~16.444.7",
376
+ "vpn-split": "~18.0.2",
376
377
  "vscode": "1.1.37",
377
378
  "wait-on": "7.0.1",
378
379
  "watch": "1.0.2",
@@ -385,14 +386,14 @@
385
386
  "main": "dist/app.electron.js"
386
387
  },
387
388
  "build": {
388
- "number": 402,
389
- "date": "2024-08-13T07:12:34.000Z",
390
- "hash": "fd17cfd75d593cb718b711b23f5673c0f347cd93"
389
+ "number": 404,
390
+ "date": "2024-08-13T18:56:40.000Z",
391
+ "hash": "ff1d90fa9d1d886808d3cabfe2cf16877160fa73"
391
392
  },
392
393
  "currentProjectName": "static-columns",
393
394
  "currentProjectGenericName": "static-columns",
394
395
  "currentProjectType": "isomorphic-lib",
395
- "currentFrameworkVersion": "18.0.2",
396
+ "currentFrameworkVersion": "18.0.4",
396
397
  "isStandaloneProject": true,
397
398
  "isSmartContainer": false,
398
399
  "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.