static-columns 18.0.17 → 18.0.19
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/1736195079865_asd.d.ts +10 -0
- package/migrations/1736195079865_asd.js +39 -0
- package/migrations/1736195079865_asd.js.map +1 -0
- package/migrations/1736195172422_myNewDbChange.d.ts +11 -0
- package/migrations/1736195172422_myNewDbChange.js +40 -0
- package/migrations/1736195172422_myNewDbChange.js.map +1 -0
- package/migrations/1736195659183_myNewDbChange222.d.ts +11 -0
- package/migrations/1736195659183_myNewDbChange222.js +40 -0
- package/migrations/1736195659183_myNewDbChange222.js.map +1 -0
- package/migrations/1736195693350_addingFlowers.d.ts +11 -0
- package/migrations/1736195693350_addingFlowers.js +40 -0
- package/migrations/1736195693350_addingFlowers.js.map +1 -0
- package/migrations/migrations_index._auto-generated_.d.ts +10 -0
- package/migrations/migrations_index._auto-generated_.js +13 -0
- package/migrations/migrations_index._auto-generated_.js.map +1 -1
- package/package.json +2 -2
- package/taon.jsonc +51 -51
- package/tmp-environment.json +30 -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.19)
|
|
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.dummy1736908830658 = dummy1736908830658;
|
|
4
|
+
function dummy1736908830658() { }
|
|
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.dummy1736908830679 = dummy1736908830679;
|
|
4
|
+
function dummy1736908830679() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Taon } from 'taon';
|
|
2
|
+
import { QueryRunner } from 'taon-typeorm';
|
|
3
|
+
export declare class MainContext_1736195079865_asd extends Taon.Base.Migration {
|
|
4
|
+
/**
|
|
5
|
+
* remove this method if you are ready to run this migration
|
|
6
|
+
*/
|
|
7
|
+
isReadyToRun(): boolean;
|
|
8
|
+
up(queryRunner: QueryRunner): Promise<any>;
|
|
9
|
+
down(queryRunner: QueryRunner): Promise<any>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MainContext_1736195079865_asd = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var taon_1 = require("taon");
|
|
6
|
+
var MainContext_1736195079865_asd = /** @class */ (function (_super) {
|
|
7
|
+
tslib_1.__extends(MainContext_1736195079865_asd, _super);
|
|
8
|
+
function MainContext_1736195079865_asd() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* remove this method if you are ready to run this migration
|
|
13
|
+
*/
|
|
14
|
+
MainContext_1736195079865_asd.prototype.isReadyToRun = function () {
|
|
15
|
+
return false;
|
|
16
|
+
};
|
|
17
|
+
MainContext_1736195079865_asd.prototype.up = function (queryRunner) {
|
|
18
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
19
|
+
return tslib_1.__generator(this, function (_a) {
|
|
20
|
+
return [2 /*return*/];
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
MainContext_1736195079865_asd.prototype.down = function (queryRunner) {
|
|
25
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
26
|
+
return tslib_1.__generator(this, function (_a) {
|
|
27
|
+
return [2 /*return*/];
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
MainContext_1736195079865_asd = tslib_1.__decorate([
|
|
32
|
+
taon_1.Taon.Migration({
|
|
33
|
+
className: 'MainContext_1736195079865_asd',
|
|
34
|
+
})
|
|
35
|
+
], MainContext_1736195079865_asd);
|
|
36
|
+
return MainContext_1736195079865_asd;
|
|
37
|
+
}(taon_1.Taon.Base.Migration));
|
|
38
|
+
exports.MainContext_1736195079865_asd = MainContext_1736195079865_asd;
|
|
39
|
+
//# sourceMappingURL=1736195079865_asd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1736195079865_asd.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,6BAA4B;AAM5B;IAAmD,yDAAmB;IAAtE;;IAeA,CAAC;IAdC;;OAEG;IACI,oDAAY,GAAnB;QACE,OAAO,KAAK,CAAC;IACf,CAAC;IAEK,0CAAE,GAAR,UAAS,WAAwB;;;;;;KAEhC;IAEK,4CAAI,GAAV,UAAW,WAAwB;;;;;;KAElC;IAdU,6BAA6B;QAHzC,WAAI,CAAC,SAAS,CAAC;YACd,SAAS,EAAE,+BAA+B;SAC3C,CAAC;OACW,6BAA6B,CAezC;IAAD,oCAAC;CAAA,AAfD,CAAmD,WAAI,CAAC,IAAI,CAAC,SAAS,GAerE;AAfY,sEAA6B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Taon } from 'taon';
|
|
2
|
+
import { QueryRunner } from 'taon-typeorm';
|
|
3
|
+
export declare class MainContext_1736195172422_myNewDbChange extends Taon.Base
|
|
4
|
+
.Migration {
|
|
5
|
+
/**
|
|
6
|
+
* remove this method if you are ready to run this migration
|
|
7
|
+
*/
|
|
8
|
+
isReadyToRun(): boolean;
|
|
9
|
+
up(queryRunner: QueryRunner): Promise<any>;
|
|
10
|
+
down(queryRunner: QueryRunner): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MainContext_1736195172422_myNewDbChange = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var taon_1 = require("taon");
|
|
6
|
+
var MainContext_1736195172422_myNewDbChange = /** @class */ (function (_super) {
|
|
7
|
+
tslib_1.__extends(MainContext_1736195172422_myNewDbChange, _super);
|
|
8
|
+
function MainContext_1736195172422_myNewDbChange() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* remove this method if you are ready to run this migration
|
|
13
|
+
*/
|
|
14
|
+
MainContext_1736195172422_myNewDbChange.prototype.isReadyToRun = function () {
|
|
15
|
+
return false;
|
|
16
|
+
};
|
|
17
|
+
MainContext_1736195172422_myNewDbChange.prototype.up = function (queryRunner) {
|
|
18
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
19
|
+
return tslib_1.__generator(this, function (_a) {
|
|
20
|
+
return [2 /*return*/];
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
MainContext_1736195172422_myNewDbChange.prototype.down = function (queryRunner) {
|
|
25
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
26
|
+
return tslib_1.__generator(this, function (_a) {
|
|
27
|
+
return [2 /*return*/];
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
MainContext_1736195172422_myNewDbChange = tslib_1.__decorate([
|
|
32
|
+
taon_1.Taon.Migration({
|
|
33
|
+
className: 'MainContext_1736195172422_myNewDbChange',
|
|
34
|
+
})
|
|
35
|
+
], MainContext_1736195172422_myNewDbChange);
|
|
36
|
+
return MainContext_1736195172422_myNewDbChange;
|
|
37
|
+
}(taon_1.Taon.Base
|
|
38
|
+
.Migration));
|
|
39
|
+
exports.MainContext_1736195172422_myNewDbChange = MainContext_1736195172422_myNewDbChange;
|
|
40
|
+
//# sourceMappingURL=1736195172422_myNewDbChange.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1736195172422_myNewDbChange.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,6BAA4B;AAM5B;IAA6D,mEACjD;IADZ;;IAgBA,CAAC;IAdC;;OAEG;IACI,8DAAY,GAAnB;QACE,OAAO,KAAK,CAAC;IACf,CAAC;IAEK,oDAAE,GAAR,UAAS,WAAwB;;;;;;KAEhC;IAEK,sDAAI,GAAV,UAAW,WAAwB;;;;;;KAElC;IAfU,uCAAuC;QAHnD,WAAI,CAAC,SAAS,CAAC;YACd,SAAS,EAAE,yCAAyC;SACrD,CAAC;OACW,uCAAuC,CAgBnD;IAAD,8CAAC;CAAA,AAhBD,CAA6D,WAAI,CAAC,IAAI;KACnE,SAAS,GAeX;AAhBY,0FAAuC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Taon } from 'taon';
|
|
2
|
+
import { QueryRunner } from 'taon-typeorm';
|
|
3
|
+
export declare class MainContext_1736195659183_myNewDbChange222 extends Taon.Base
|
|
4
|
+
.Migration {
|
|
5
|
+
/**
|
|
6
|
+
* remove this method if you are ready to run this migration
|
|
7
|
+
*/
|
|
8
|
+
isReadyToRun(): boolean;
|
|
9
|
+
up(queryRunner: QueryRunner): Promise<any>;
|
|
10
|
+
down(queryRunner: QueryRunner): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MainContext_1736195659183_myNewDbChange222 = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var taon_1 = require("taon");
|
|
6
|
+
var MainContext_1736195659183_myNewDbChange222 = /** @class */ (function (_super) {
|
|
7
|
+
tslib_1.__extends(MainContext_1736195659183_myNewDbChange222, _super);
|
|
8
|
+
function MainContext_1736195659183_myNewDbChange222() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* remove this method if you are ready to run this migration
|
|
13
|
+
*/
|
|
14
|
+
MainContext_1736195659183_myNewDbChange222.prototype.isReadyToRun = function () {
|
|
15
|
+
return false;
|
|
16
|
+
};
|
|
17
|
+
MainContext_1736195659183_myNewDbChange222.prototype.up = function (queryRunner) {
|
|
18
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
19
|
+
return tslib_1.__generator(this, function (_a) {
|
|
20
|
+
return [2 /*return*/];
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
MainContext_1736195659183_myNewDbChange222.prototype.down = function (queryRunner) {
|
|
25
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
26
|
+
return tslib_1.__generator(this, function (_a) {
|
|
27
|
+
return [2 /*return*/];
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
MainContext_1736195659183_myNewDbChange222 = tslib_1.__decorate([
|
|
32
|
+
taon_1.Taon.Migration({
|
|
33
|
+
className: 'MainContext_1736195659183_myNewDbChange222',
|
|
34
|
+
})
|
|
35
|
+
], MainContext_1736195659183_myNewDbChange222);
|
|
36
|
+
return MainContext_1736195659183_myNewDbChange222;
|
|
37
|
+
}(taon_1.Taon.Base
|
|
38
|
+
.Migration));
|
|
39
|
+
exports.MainContext_1736195659183_myNewDbChange222 = MainContext_1736195659183_myNewDbChange222;
|
|
40
|
+
//# sourceMappingURL=1736195659183_myNewDbChange222.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1736195659183_myNewDbChange222.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,6BAA4B;AAM5B;IAAgE,sEACpD;IADZ;;IAgBA,CAAC;IAdC;;OAEG;IACI,iEAAY,GAAnB;QACE,OAAO,KAAK,CAAC;IACf,CAAC;IAEK,uDAAE,GAAR,UAAS,WAAwB;;;;;;KAEhC;IAEK,yDAAI,GAAV,UAAW,WAAwB;;;;;;KAElC;IAfU,0CAA0C;QAHtD,WAAI,CAAC,SAAS,CAAC;YACd,SAAS,EAAE,4CAA4C;SACxD,CAAC;OACW,0CAA0C,CAgBtD;IAAD,iDAAC;CAAA,AAhBD,CAAgE,WAAI,CAAC,IAAI;KACtE,SAAS,GAeX;AAhBY,gGAA0C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Taon } from 'taon';
|
|
2
|
+
import { QueryRunner } from 'taon-typeorm';
|
|
3
|
+
export declare class MainContext_1736195693350_addingFlowers extends Taon.Base
|
|
4
|
+
.Migration {
|
|
5
|
+
/**
|
|
6
|
+
* remove this method if you are ready to run this migration
|
|
7
|
+
*/
|
|
8
|
+
isReadyToRun(): boolean;
|
|
9
|
+
up(queryRunner: QueryRunner): Promise<any>;
|
|
10
|
+
down(queryRunner: QueryRunner): Promise<any>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MainContext_1736195693350_addingFlowers = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var taon_1 = require("taon");
|
|
6
|
+
var MainContext_1736195693350_addingFlowers = /** @class */ (function (_super) {
|
|
7
|
+
tslib_1.__extends(MainContext_1736195693350_addingFlowers, _super);
|
|
8
|
+
function MainContext_1736195693350_addingFlowers() {
|
|
9
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* remove this method if you are ready to run this migration
|
|
13
|
+
*/
|
|
14
|
+
MainContext_1736195693350_addingFlowers.prototype.isReadyToRun = function () {
|
|
15
|
+
return false;
|
|
16
|
+
};
|
|
17
|
+
MainContext_1736195693350_addingFlowers.prototype.up = function (queryRunner) {
|
|
18
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
19
|
+
return tslib_1.__generator(this, function (_a) {
|
|
20
|
+
return [2 /*return*/];
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
MainContext_1736195693350_addingFlowers.prototype.down = function (queryRunner) {
|
|
25
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
26
|
+
return tslib_1.__generator(this, function (_a) {
|
|
27
|
+
return [2 /*return*/];
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
MainContext_1736195693350_addingFlowers = tslib_1.__decorate([
|
|
32
|
+
taon_1.Taon.Migration({
|
|
33
|
+
className: 'MainContext_1736195693350_addingFlowers',
|
|
34
|
+
})
|
|
35
|
+
], MainContext_1736195693350_addingFlowers);
|
|
36
|
+
return MainContext_1736195693350_addingFlowers;
|
|
37
|
+
}(taon_1.Taon.Base
|
|
38
|
+
.Migration));
|
|
39
|
+
exports.MainContext_1736195693350_addingFlowers = MainContext_1736195693350_addingFlowers;
|
|
40
|
+
//# sourceMappingURL=1736195693350_addingFlowers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1736195693350_addingFlowers.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;;AAAA,6BAA4B;AAM5B;IAA6D,mEACjD;IADZ;;IAgBA,CAAC;IAdC;;OAEG;IACI,8DAAY,GAAnB;QACE,OAAO,KAAK,CAAC;IACf,CAAC;IAEK,oDAAE,GAAR,UAAS,WAAwB;;;;;;KAEhC;IAEK,sDAAI,GAAV,UAAW,WAAwB;;;;;;KAElC;IAfU,uCAAuC;QAHnD,WAAI,CAAC,SAAS,CAAC;YACd,SAAS,EAAE,yCAAyC;SACrD,CAAC;OACW,uCAAuC,CAgBnD;IAAD,8CAAC;CAAA,AAhBD,CAA6D,WAAI,CAAC,IAAI;KACnE,SAAS,GAeX;AAhBY,0FAAuC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MainContext_1736195079865_asd } from './1736195079865_asd';
|
|
2
|
+
import { MainContext_1736195172422_myNewDbChange } from './1736195172422_myNewDbChange';
|
|
3
|
+
import { MainContext_1736195659183_myNewDbChange222 } from './1736195659183_myNewDbChange222';
|
|
4
|
+
import { MainContext_1736195693350_addingFlowers } from './1736195693350_addingFlowers';
|
|
5
|
+
export declare const MIGRATIONS_CLASSES_FOR_MainContext: {
|
|
6
|
+
MainContext_1736195079865_asd: typeof MainContext_1736195079865_asd;
|
|
7
|
+
MainContext_1736195172422_myNewDbChange: typeof MainContext_1736195172422_myNewDbChange;
|
|
8
|
+
MainContext_1736195659183_myNewDbChange222: typeof MainContext_1736195659183_myNewDbChange222;
|
|
9
|
+
MainContext_1736195693350_addingFlowers: typeof MainContext_1736195693350_addingFlowers;
|
|
10
|
+
};
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MIGRATIONS_CLASSES_FOR_MainContext = void 0;
|
|
1
4
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
5
|
+
var _1736195079865_asd_1 = require("./1736195079865_asd");
|
|
6
|
+
var _1736195172422_myNewDbChange_1 = require("./1736195172422_myNewDbChange");
|
|
7
|
+
var _1736195659183_myNewDbChange222_1 = require("./1736195659183_myNewDbChange222");
|
|
8
|
+
var _1736195693350_addingFlowers_1 = require("./1736195693350_addingFlowers");
|
|
2
9
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
10
|
+
exports.MIGRATIONS_CLASSES_FOR_MainContext = {
|
|
11
|
+
/* 06-01-2025 21:24:39 */ MainContext_1736195079865_asd: _1736195079865_asd_1.MainContext_1736195079865_asd,
|
|
12
|
+
/* 06-01-2025 21:26:12 */ MainContext_1736195172422_myNewDbChange: _1736195172422_myNewDbChange_1.MainContext_1736195172422_myNewDbChange,
|
|
13
|
+
/* 06-01-2025 21:34:19 */ MainContext_1736195659183_myNewDbChange222: _1736195659183_myNewDbChange222_1.MainContext_1736195659183_myNewDbChange222,
|
|
14
|
+
/* 06-01-2025 21:34:53 */ MainContext_1736195693350_addingFlowers: _1736195693350_addingFlowers_1.MainContext_1736195693350_addingFlowers,
|
|
15
|
+
};
|
|
3
16
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
4
17
|
//# sourceMappingURL=migrations_index._auto-generated_.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrations_index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,yCAAyC;
|
|
1
|
+
{"version":3,"file":"migrations_index._auto-generated_.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,yCAAyC;AACzC,0DAAoE;AACpE,8EAAwF;AACxF,oFAA8F;AAC9F,8EAAwF;AACxF,yCAAyC;AAC5B,QAAA,kCAAkC,GAAG;IAChD,yBAAyB,CAAC,6BAA6B,oDAAA;IACvD,yBAAyB,CAAC,uCAAuC,wEAAA;IACjE,yBAAyB,CAAC,0CAA0C,8EAAA;IACpE,yBAAyB,CAAC,uCAAuC,wEAAA;CAClE,CAAC;AACF,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.19",
|
|
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": "f4f38b8552dce6da86c10735b3ebf77d5cf2ece0",
|
|
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.19",
|
|
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": "f4f38b8552dce6da86c10735b3ebf77d5cf2ece0",
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
84
84
|
"@angular-devkit/build-angular": "~18.1.4",
|
|
@@ -243,13 +243,14 @@
|
|
|
243
243
|
"image-focus": "1.2.1",
|
|
244
244
|
"immer": "10.0.2",
|
|
245
245
|
"immutable": "4.3.7",
|
|
246
|
-
"incremental-compiler": "~18.0.
|
|
246
|
+
"incremental-compiler": "~18.0.19",
|
|
247
247
|
"inquirer": "7.3.3",
|
|
248
248
|
"inquirer-autocomplete-prompt": "1.4.0",
|
|
249
249
|
"inquirer-autocomplete-standalone": "0.8.1",
|
|
250
250
|
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
251
|
+
"inquirer-toggle": "1.0.1",
|
|
251
252
|
"is-elevated": "3.0.0",
|
|
252
|
-
"isomorphic-region-loader": "~18.0.
|
|
253
|
+
"isomorphic-region-loader": "~18.0.18",
|
|
253
254
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
254
255
|
"jest": "29.7.0",
|
|
255
256
|
"jest-date-mock": "1.0.10",
|
|
@@ -260,8 +261,8 @@
|
|
|
260
261
|
"joi": "17.13.3",
|
|
261
262
|
"jscodeshift": "0.6.3",
|
|
262
263
|
"json-stringify-safe": "5.0.1",
|
|
263
|
-
"json10": "~18.0.
|
|
264
|
-
"json10-writer": "~18.0.
|
|
264
|
+
"json10": "~18.0.18",
|
|
265
|
+
"json10-writer": "~18.0.18",
|
|
265
266
|
"json5": "2.2.3",
|
|
266
267
|
"json5-writer": "0.2.0",
|
|
267
268
|
"jszip": "3.10.1",
|
|
@@ -270,9 +271,9 @@
|
|
|
270
271
|
"localforage": "1.10.0",
|
|
271
272
|
"lockfile": "1.0.4",
|
|
272
273
|
"lodash": "4.17.21",
|
|
273
|
-
"lodash-walk-object": "~18.0.
|
|
274
|
+
"lodash-walk-object": "~18.0.18",
|
|
274
275
|
"lowdb": "7.0.1",
|
|
275
|
-
"magic-renamer": "~18.0.
|
|
276
|
+
"magic-renamer": "~18.0.18",
|
|
276
277
|
"material-design-icons": "3.0.1",
|
|
277
278
|
"method-override": "2.3.10",
|
|
278
279
|
"minimist": "1.2.8",
|
|
@@ -283,11 +284,11 @@
|
|
|
283
284
|
"ng-in-viewport": "16.1.0",
|
|
284
285
|
"ng-lock": "18.0.1",
|
|
285
286
|
"ng-packagr": "18.1.0",
|
|
286
|
-
"ng-talkback": "~18.0.
|
|
287
|
-
"ng2-logger": "~18.0.
|
|
287
|
+
"ng-talkback": "~18.0.17",
|
|
288
|
+
"ng2-logger": "~18.0.20",
|
|
288
289
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
289
|
-
"ng2-rest": "~18.0.
|
|
290
|
-
"ng2-rest-swagger-generator": "18.0.
|
|
290
|
+
"ng2-rest": "~18.0.18",
|
|
291
|
+
"ng2-rest-swagger-generator": "18.0.15",
|
|
291
292
|
"ngx-ace-wrapper": "17.0.0",
|
|
292
293
|
"ngx-editor": "17.5.4",
|
|
293
294
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -301,7 +302,7 @@
|
|
|
301
302
|
"ngx-scrolltop": "18.0.0",
|
|
302
303
|
"ngx-store": "3.1.1",
|
|
303
304
|
"ngx-typed-js": "2.1.1",
|
|
304
|
-
"node-cli-tester": "~18.0.
|
|
305
|
+
"node-cli-tester": "~18.0.17",
|
|
305
306
|
"node-localstorage": "2.1.6",
|
|
306
307
|
"node-notifier": "10.0.1",
|
|
307
308
|
"node-polyfill-webpack-plugin": "2.0.1",
|
|
@@ -332,7 +333,7 @@
|
|
|
332
333
|
"q": "1.5.1",
|
|
333
334
|
"rallax.js": "2.0.4",
|
|
334
335
|
"randomcolor": "0.5.3",
|
|
335
|
-
"record-replay-req-res-scenario": "~18.0.
|
|
336
|
+
"record-replay-req-res-scenario": "~18.0.17",
|
|
336
337
|
"reflect-metadata": "0.2.2",
|
|
337
338
|
"rimraf": "2.6.2",
|
|
338
339
|
"rxjs": "~7.8.1",
|
|
@@ -346,23 +347,23 @@
|
|
|
346
347
|
"sql-template-strings": "2.2.2",
|
|
347
348
|
"sql-template-tag": "5.2.1",
|
|
348
349
|
"sql.js": "1.8.0",
|
|
349
|
-
"static-columns": "~18.0.
|
|
350
|
+
"static-columns": "~18.0.18",
|
|
350
351
|
"string-similarity": "4.0.4",
|
|
351
352
|
"sudo-block": "3.0.0",
|
|
352
353
|
"supertest": "7.0.0",
|
|
353
354
|
"sweetalert2": "11.7.32",
|
|
354
355
|
"systeminformation": "3.45.7",
|
|
355
356
|
"taon": "^18",
|
|
356
|
-
"taon-storage": "18.0.
|
|
357
|
-
"taon-type-sql": "18.0.
|
|
358
|
-
"taon-typeorm": "18.0.
|
|
357
|
+
"taon-storage": "18.0.26",
|
|
358
|
+
"taon-type-sql": "18.0.17",
|
|
359
|
+
"taon-typeorm": "18.0.16",
|
|
359
360
|
"task.js": "0.1.5",
|
|
360
361
|
"threads": "1.7.0",
|
|
361
|
-
"tnp": "~18.0.
|
|
362
|
-
"tnp-config": "~18.0.
|
|
363
|
-
"tnp-core": "~18.0.
|
|
364
|
-
"tnp-helpers": "~18.0.
|
|
365
|
-
"tnp-models": "~18.0.
|
|
362
|
+
"tnp": "~18.0.19",
|
|
363
|
+
"tnp-config": "~18.0.20",
|
|
364
|
+
"tnp-core": "~18.0.45",
|
|
365
|
+
"tnp-helpers": "~18.0.18",
|
|
366
|
+
"tnp-models": "~18.0.19",
|
|
366
367
|
"ts-debug": "1.3.0",
|
|
367
368
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
368
369
|
"ts-loader": "2.3.1",
|
|
@@ -374,14 +375,14 @@
|
|
|
374
375
|
"typedoc": "0.26.5",
|
|
375
376
|
"typedoc-plugin-markdown": "4.2.3",
|
|
376
377
|
"typescript": "~5.5.4",
|
|
377
|
-
"typescript-class-helpers": "~18.0.
|
|
378
|
+
"typescript-class-helpers": "~18.0.19",
|
|
378
379
|
"typescript-formatter": "~7.2.2",
|
|
379
380
|
"typescript-string-enums": "~1.0.0",
|
|
380
381
|
"underscore": "1.13.7",
|
|
381
382
|
"uuid": "10.0.0",
|
|
382
383
|
"validator": "13.5.2",
|
|
383
384
|
"video.js": "8.3.0",
|
|
384
|
-
"vpn-split": "~18.0.
|
|
385
|
+
"vpn-split": "~18.0.16",
|
|
385
386
|
"vscode": "1.1.37",
|
|
386
387
|
"wait-on": "8.0.1",
|
|
387
388
|
"watch": "1.0.2",
|
|
@@ -394,14 +395,14 @@
|
|
|
394
395
|
"main": "dist/app.electron.js"
|
|
395
396
|
},
|
|
396
397
|
"build": {
|
|
397
|
-
"number":
|
|
398
|
-
"date": "
|
|
399
|
-
"hash": "
|
|
398
|
+
"number": 426,
|
|
399
|
+
"date": "2025-01-15T02:40:27.000Z",
|
|
400
|
+
"hash": "6f269fcc8226a454f5bb2a61d755dd1037af2875"
|
|
400
401
|
},
|
|
401
402
|
"currentProjectName": "static-columns",
|
|
402
403
|
"currentProjectGenericName": "static-columns",
|
|
403
404
|
"currentProjectType": "isomorphic-lib",
|
|
404
|
-
"currentFrameworkVersion": "18.0.
|
|
405
|
+
"currentFrameworkVersion": "18.0.22",
|
|
405
406
|
"isStandaloneProject": true,
|
|
406
407
|
"isSmartContainer": false,
|
|
407
408
|
"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.
|