static-columns 18.0.16 → 18.0.17
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/lib/column/index.js +2 -2
- package/lib/columns-gap/index.js +2 -2
- package/migrations/index.d.ts +1 -0
- package/migrations/index.js +6 -0
- package/migrations/index.js.map +1 -0
- package/migrations/migrations_index._auto-generated_.d.ts +0 -0
- package/migrations/migrations_index._auto-generated_.js +4 -0
- package/migrations/migrations_index._auto-generated_.js.map +1 -0
- package/package.json +2 -2
- package/taon.jsonc +51 -51
- package/tmp-environment.json +32 -29
- 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@18.0.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (static-columns@18.0.17)
|
|
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/lib/column/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1735667739508 = dummy1735667739508;
|
|
4
|
+
function dummy1735667739508() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/lib/columns-gap/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1735667739512 = dummy1735667739512;
|
|
4
|
+
function dummy1735667739512() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './migrations_index._auto-generated_';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,aAAa;AACb,8EAAoD"}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"migrations_index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,yCAAyC;AAEzC,yCAAyC;AAEzC,yCAAyC"}
|
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"workerPlugins": {}
|
|
50
50
|
},
|
|
51
51
|
"name": "static-columns",
|
|
52
|
-
"version": "18.0.
|
|
52
|
+
"version": "18.0.17",
|
|
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": "09dd4e3e1d9a1b76cc2cbfe93bdd470b9deb73e2",
|
|
77
77
|
"devDependencies": {},
|
|
78
78
|
"main": "dist/app.electron.js"
|
|
79
79
|
}
|
package/taon.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
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"workerPlugins": {}
|
|
55
55
|
},
|
|
56
56
|
"name": "static-columns",
|
|
57
|
-
"version": "18.0.
|
|
57
|
+
"version": "18.0.17",
|
|
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": "09dd4e3e1d9a1b76cc2cbfe93bdd470b9deb73e2",
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
84
84
|
"@angular-devkit/build-angular": "~18.1.4",
|
|
@@ -192,6 +192,7 @@
|
|
|
192
192
|
"command-exists": "1.2.2",
|
|
193
193
|
"compression": "1.7.4",
|
|
194
194
|
"concurrently": "8.2.2",
|
|
195
|
+
"console-png": "1.2.1",
|
|
195
196
|
"content-type": "1.0.5",
|
|
196
197
|
"conventional-changelog-cli": "5.0.0",
|
|
197
198
|
"cookie-parser": "1.4.6",
|
|
@@ -242,13 +243,13 @@
|
|
|
242
243
|
"image-focus": "1.2.1",
|
|
243
244
|
"immer": "10.0.2",
|
|
244
245
|
"immutable": "4.3.7",
|
|
245
|
-
"incremental-compiler": "~18.0.
|
|
246
|
+
"incremental-compiler": "~18.0.16",
|
|
246
247
|
"inquirer": "7.3.3",
|
|
247
248
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
248
249
|
"inquirer-autocomplete-standalone": "0.8.1",
|
|
249
250
|
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
250
251
|
"is-elevated": "3.0.0",
|
|
251
|
-
"isomorphic-region-loader": "~18.0.
|
|
252
|
+
"isomorphic-region-loader": "~18.0.16",
|
|
252
253
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
253
254
|
"jest": "29.7.0",
|
|
254
255
|
"jest-date-mock": "1.0.10",
|
|
@@ -259,8 +260,8 @@
|
|
|
259
260
|
"joi": "17.13.3",
|
|
260
261
|
"jscodeshift": "0.6.3",
|
|
261
262
|
"json-stringify-safe": "5.0.1",
|
|
262
|
-
"json10": "~18.0.
|
|
263
|
-
"json10-writer": "~18.0.
|
|
263
|
+
"json10": "~18.0.16",
|
|
264
|
+
"json10-writer": "~18.0.16",
|
|
264
265
|
"json5": "2.2.3",
|
|
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.21",
|
|
272
|
-
"lodash-walk-object": "~18.0.
|
|
273
|
+
"lodash-walk-object": "~18.0.16",
|
|
273
274
|
"lowdb": "7.0.1",
|
|
274
|
-
"magic-renamer": "~18.0.
|
|
275
|
+
"magic-renamer": "~18.0.16",
|
|
275
276
|
"material-design-icons": "3.0.1",
|
|
276
277
|
"method-override": "2.3.10",
|
|
277
278
|
"minimist": "1.2.8",
|
|
@@ -282,11 +283,11 @@
|
|
|
282
283
|
"ng-in-viewport": "16.1.0",
|
|
283
284
|
"ng-lock": "18.0.1",
|
|
284
285
|
"ng-packagr": "18.1.0",
|
|
285
|
-
"ng-talkback": "~18.0.
|
|
286
|
-
"ng2-logger": "~18.0.
|
|
286
|
+
"ng-talkback": "~18.0.15",
|
|
287
|
+
"ng2-logger": "~18.0.18",
|
|
287
288
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
288
|
-
"ng2-rest": "~18.0.
|
|
289
|
-
"ng2-rest-swagger-generator": "18.0.
|
|
289
|
+
"ng2-rest": "~18.0.16",
|
|
290
|
+
"ng2-rest-swagger-generator": "18.0.13",
|
|
290
291
|
"ngx-ace-wrapper": "17.0.0",
|
|
291
292
|
"ngx-editor": "17.5.4",
|
|
292
293
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -300,7 +301,7 @@
|
|
|
300
301
|
"ngx-scrolltop": "18.0.0",
|
|
301
302
|
"ngx-store": "3.1.1",
|
|
302
303
|
"ngx-typed-js": "2.1.1",
|
|
303
|
-
"node-cli-tester": "~18.0.
|
|
304
|
+
"node-cli-tester": "~18.0.15",
|
|
304
305
|
"node-localstorage": "2.1.6",
|
|
305
306
|
"node-notifier": "10.0.1",
|
|
306
307
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -331,7 +332,7 @@
|
|
|
331
332
|
"q": "1.5.1",
|
|
332
333
|
"rallax.js": "2.0.4",
|
|
333
334
|
"randomcolor": "0.5.3",
|
|
334
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
335
|
+
"record-replay-req-res-scenario": "~18.0.15",
|
|
335
336
|
"reflect-metadata": "0.2.2",
|
|
336
337
|
"rimraf": "2.6.2",
|
|
337
338
|
"rxjs": "~7.8.1",
|
|
@@ -342,24 +343,26 @@
|
|
|
342
343
|
"socket.io": "4.7.5",
|
|
343
344
|
"socket.io-client": "4.7.5",
|
|
344
345
|
"sort-package-json": "1.11.0",
|
|
346
|
+
"sql-template-strings": "2.2.2",
|
|
347
|
+
"sql-template-tag": "5.2.1",
|
|
345
348
|
"sql.js": "1.8.0",
|
|
346
|
-
"static-columns": "~18.0.
|
|
349
|
+
"static-columns": "~18.0.16",
|
|
347
350
|
"string-similarity": "4.0.4",
|
|
348
351
|
"sudo-block": "3.0.0",
|
|
349
352
|
"supertest": "7.0.0",
|
|
350
353
|
"sweetalert2": "11.7.32",
|
|
351
354
|
"systeminformation": "3.45.7",
|
|
352
355
|
"taon": "^18",
|
|
353
|
-
"taon-storage": "18.0.
|
|
354
|
-
"taon-type-sql": "18.0.
|
|
355
|
-
"taon-typeorm": "18.0.
|
|
356
|
+
"taon-storage": "18.0.24",
|
|
357
|
+
"taon-type-sql": "18.0.15",
|
|
358
|
+
"taon-typeorm": "18.0.14",
|
|
356
359
|
"task.js": "0.1.5",
|
|
357
360
|
"threads": "1.7.0",
|
|
358
|
-
"tnp": "~18.0.
|
|
359
|
-
"tnp-config": "~18.0.
|
|
360
|
-
"tnp-core": "~18.0.
|
|
361
|
-
"tnp-helpers": "~18.0.
|
|
362
|
-
"tnp-models": "~18.0.
|
|
361
|
+
"tnp": "~18.0.15",
|
|
362
|
+
"tnp-config": "~18.0.18",
|
|
363
|
+
"tnp-core": "~18.0.42",
|
|
364
|
+
"tnp-helpers": "~18.0.16",
|
|
365
|
+
"tnp-models": "~18.0.17",
|
|
363
366
|
"ts-debug": "1.3.0",
|
|
364
367
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
365
368
|
"ts-loader": "2.3.1",
|
|
@@ -371,14 +374,14 @@
|
|
|
371
374
|
"typedoc": "0.26.5",
|
|
372
375
|
"typedoc-plugin-markdown": "4.2.3",
|
|
373
376
|
"typescript": "~5.5.4",
|
|
374
|
-
"typescript-class-helpers": "~18.0.
|
|
377
|
+
"typescript-class-helpers": "~18.0.17",
|
|
375
378
|
"typescript-formatter": "~7.2.2",
|
|
376
379
|
"typescript-string-enums": "~1.0.0",
|
|
377
380
|
"underscore": "1.13.7",
|
|
378
381
|
"uuid": "10.0.0",
|
|
379
382
|
"validator": "13.5.2",
|
|
380
383
|
"video.js": "8.3.0",
|
|
381
|
-
"vpn-split": "~18.0.
|
|
384
|
+
"vpn-split": "~18.0.14",
|
|
382
385
|
"vscode": "1.1.37",
|
|
383
386
|
"wait-on": "8.0.1",
|
|
384
387
|
"watch": "1.0.2",
|
|
@@ -391,14 +394,14 @@
|
|
|
391
394
|
"main": "dist/app.electron.js"
|
|
392
395
|
},
|
|
393
396
|
"build": {
|
|
394
|
-
"number":
|
|
395
|
-
"date": "2024-
|
|
396
|
-
"hash": "
|
|
397
|
+
"number": 421,
|
|
398
|
+
"date": "2024-12-25T13:52:09.000Z",
|
|
399
|
+
"hash": "8bfa64ae1e7e7a1bf77c8898b5a76609b6cdb089"
|
|
397
400
|
},
|
|
398
401
|
"currentProjectName": "static-columns",
|
|
399
402
|
"currentProjectGenericName": "static-columns",
|
|
400
403
|
"currentProjectType": "isomorphic-lib",
|
|
401
|
-
"currentFrameworkVersion": "18.0.
|
|
404
|
+
"currentFrameworkVersion": "18.0.17",
|
|
402
405
|
"isStandaloneProject": true,
|
|
403
406
|
"isSmartContainer": false,
|
|
404
407
|
"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.
|