@jvsoft/components 0.0.12 → 0.0.13-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
# @jvsoft/components
|
|
2
2
|
|
|
3
|
-
## 0.0.
|
|
3
|
+
## 0.0.13-alpha.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- ?
|
|
8
|
-
- UPD Utils
|
|
9
7
|
- Updated dependencies
|
|
10
|
-
- @jvsoft/utils@0.0.
|
|
8
|
+
- @jvsoft/utils@0.0.13-alpha.1
|
|
11
9
|
|
|
12
|
-
## 0.0.11
|
|
10
|
+
## 0.0.11-alpha.0
|
|
13
11
|
|
|
14
12
|
### Patch Changes
|
|
15
13
|
|
|
16
|
-
- WSpace
|
|
17
14
|
- Updated dependencies
|
|
18
|
-
- @jvsoft/utils@0.0.
|
|
15
|
+
- @jvsoft/utils@0.0.10-alpha.0
|
|
@@ -7,7 +7,7 @@ import {FormsModule} from '@angular/forms';
|
|
|
7
7
|
import {Observable} from 'rxjs';
|
|
8
8
|
import {NestedTreeControl} from '@angular/cdk/tree';
|
|
9
9
|
import {generarArbol} from './lista-arbol.functions';
|
|
10
|
-
import {DataModel} from '@jvsoft/utils';
|
|
10
|
+
import {DataModel} from '@jvsoft/utils/src/public-api';
|
|
11
11
|
import {SelectionModel} from '@angular/cdk/collections';
|
|
12
12
|
import shortHash from 'shorthash2';
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,36 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jvsoft/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13-alpha.1",
|
|
4
|
+
"description": "JVSOFT Angular Components",
|
|
4
5
|
"publishConfig": {
|
|
5
|
-
"
|
|
6
|
-
"
|
|
6
|
+
"tag": "alpha",
|
|
7
|
+
"access": "public"
|
|
7
8
|
},
|
|
8
9
|
"peerDependencies": {
|
|
9
10
|
"@angular/common": ">=16.0.0",
|
|
10
11
|
"@angular/core": ">=16.0.0",
|
|
11
12
|
"@angular/forms": ">=16.0.0",
|
|
12
13
|
"@angular/material": ">=16.0.0",
|
|
14
|
+
"@jvsoft/utils": "workspace:*",
|
|
13
15
|
"@ngneat/until-destroy": "^10.0.0",
|
|
14
16
|
"moment": "^2.30.1",
|
|
15
17
|
"shorthash2": "^1.0.5",
|
|
16
18
|
"tailwindcss": "3",
|
|
17
|
-
"xlsx": "^0.18.5"
|
|
18
|
-
"@jvsoft/utils": "workspace:*"
|
|
19
|
+
"xlsx": "^0.18.5"
|
|
19
20
|
},
|
|
20
21
|
"dependencies": {
|
|
22
|
+
"@jvsoft/utils": "workspace:*",
|
|
21
23
|
"tslib": "^2.3.0"
|
|
22
24
|
},
|
|
23
25
|
"sideEffects": false,
|
|
24
26
|
"exports": {
|
|
25
27
|
"./base.scss": "./src/styles/base.scss",
|
|
26
28
|
"./styles.css": "./src/styles/base-jvsoft-components.css"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "ng build components --configuration production",
|
|
30
|
-
"build:lib": "node build.js && yarn build",
|
|
31
|
-
"build:styles": "tailwindcss -i ./src/styles/base.scss -o ./src/styles/base-jvsoft-components.css",
|
|
32
|
-
"watch:styles": "yarn build:styles --watch",
|
|
33
|
-
"watch": "ng build components --watch --configuration development",
|
|
34
|
-
"test": "ng test components"
|
|
35
29
|
}
|
|
36
30
|
}
|