@jvsoft/components 0.0.13-alpha.0 → 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,26 +1,15 @@
1
1
  # @jvsoft/components
2
2
 
3
- ## 0.0.13-alpha.0
3
+ ## 0.0.13-alpha.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - TAG ALPHA
8
7
  - Updated dependencies
9
- - @jvsoft/utils@0.0.13-alpha.0
8
+ - @jvsoft/utils@0.0.13-alpha.1
10
9
 
11
- ## 0.0.12
10
+ ## 0.0.11-alpha.0
12
11
 
13
12
  ### Patch Changes
14
13
 
15
- - ?
16
- - UPD Utils
17
14
  - Updated dependencies
18
- - @jvsoft/utils@0.0.12
19
-
20
- ## 0.0.11
21
-
22
- ### Patch Changes
23
-
24
- - WSpace
25
- - Updated dependencies
26
- - @jvsoft/utils@0.0.11
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,7 +1,9 @@
1
1
  {
2
2
  "name": "@jvsoft/components",
3
- "version": "0.0.13-alpha.0",
3
+ "version": "0.0.13-alpha.1",
4
+ "description": "JVSOFT Angular Components",
4
5
  "publishConfig": {
6
+ "tag": "alpha",
5
7
  "access": "public"
6
8
  },
7
9
  "peerDependencies": {
@@ -9,27 +11,20 @@
9
11
  "@angular/core": ">=16.0.0",
10
12
  "@angular/forms": ">=16.0.0",
11
13
  "@angular/material": ">=16.0.0",
14
+ "@jvsoft/utils": "workspace:*",
12
15
  "@ngneat/until-destroy": "^10.0.0",
13
16
  "moment": "^2.30.1",
14
17
  "shorthash2": "^1.0.5",
15
18
  "tailwindcss": "3",
16
- "xlsx": "^0.18.5",
17
- "@jvsoft/utils": "workspace:*"
19
+ "xlsx": "^0.18.5"
18
20
  },
19
21
  "dependencies": {
22
+ "@jvsoft/utils": "workspace:*",
20
23
  "tslib": "^2.3.0"
21
24
  },
22
25
  "sideEffects": false,
23
26
  "exports": {
24
27
  "./base.scss": "./src/styles/base.scss",
25
28
  "./styles.css": "./src/styles/base-jvsoft-components.css"
26
- },
27
- "scripts": {
28
- "build": "ng build components --configuration production",
29
- "build:lib": "node build.js && yarn build",
30
- "build:styles": "tailwindcss -i ./src/styles/base.scss -o ./src/styles/base-jvsoft-components.css",
31
- "watch:styles": "yarn build:styles --watch",
32
- "watch": "ng build components --watch --configuration development",
33
- "test": "ng test components"
34
29
  }
35
30
  }
@@ -0,0 +1,9 @@
1
+ @use "tailwind.scss";
2
+
3
+ @use "components/index.scss";
4
+
5
+ /*
6
+
7
+ @import "../../components/tabla-mantenimiento/tabla-mantenimiento.component.scss";
8
+ */
9
+
package/tsconfig.lib.json CHANGED
@@ -7,7 +7,12 @@
7
7
  "declaration": true,
8
8
  "declarationMap": true,
9
9
  "inlineSources": true,
10
- "types": []
10
+ "types": [],
11
+ "paths": {
12
+ "@jvsoft/utils": [
13
+ "../utils/src/public-api"
14
+ ]
15
+ }
11
16
  },
12
17
  "exclude": [
13
18
  "**/*.spec.ts"