coer-elements 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,5 @@
1
- import { Observable } from "rxjs";
2
-
3
- export interface IScreenSize {
4
- width: number;
5
- height: number;
6
- breakpoin: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
7
- }
1
+ import { IScreenSize } from "interfaces";
2
+ import { Observable } from "rxjs";
8
3
 
9
4
  export class Screen {
10
5
 
@@ -2,4 +2,10 @@ export interface IPatch {
2
2
  op: 'remove' | 'add' | 'replace';
3
3
  path: string;
4
4
  value: any;
5
+ }
6
+
7
+ export interface IScreenSize {
8
+ width: number;
9
+ height: number;
10
+ breakpoin: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
5
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "coer",
@@ -22,13 +22,23 @@
22
22
  "push": "npm publish --access public"
23
23
  },
24
24
  "dependencies": {
25
- "@angular/core": "^18.2.3",
25
+ "@angular/animations": "^17.3.0",
26
+ "@angular/cdk": "^17.3.3",
27
+ "@angular/common": "^17.3.0",
28
+ "@angular/compiler": "^17.3.0",
29
+ "@angular/core": "^17.3.0",
30
+ "@angular/forms": "^17.3.0",
31
+ "@angular/material": "^17.3.3",
32
+ "@angular/platform-browser": "^17.3.0",
33
+ "@angular/platform-browser-dynamic": "^17.3.0",
34
+ "@angular/router": "^17.3.0",
26
35
  "guid-typescript": "^1.0.9",
27
36
  "moment": "^2.30.1",
28
37
  "rxjs": "^7.8.1",
29
38
  "xlsx": "^0.18.5"
30
39
  },
31
40
  "devDependencies": {
41
+ "@types/xlsx": "^0.0.36",
32
42
  "typescript": "^5.5.4"
33
43
  }
34
44
  }