coer-elements 1.0.3 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/Signals/index.ts +1 -1
- package/Tools/Screen.class.ts +2 -7
- package/Tools/index.ts +1 -1
- package/interfaces/index.ts +6 -0
- package/package.json +2 -2
package/Signals/index.ts
CHANGED
package/Tools/Screen.class.ts
CHANGED
@@ -1,10 +1,5 @@
|
|
1
|
-
import {
|
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
|
|
package/Tools/index.ts
CHANGED
package/interfaces/index.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "coer-elements",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.5",
|
4
4
|
"author": "Christian Omar Escamilla Rodríguez",
|
5
5
|
"keywords": [
|
6
6
|
"coer",
|
@@ -22,13 +22,13 @@
|
|
22
22
|
"push": "npm publish --access public"
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@angular/core": "^18.2.3",
|
26
25
|
"guid-typescript": "^1.0.9",
|
27
26
|
"moment": "^2.30.1",
|
28
27
|
"rxjs": "^7.8.1",
|
29
28
|
"xlsx": "^0.18.5"
|
30
29
|
},
|
31
30
|
"devDependencies": {
|
31
|
+
"@types/xlsx": "^0.0.36",
|
32
32
|
"typescript": "^5.5.4"
|
33
33
|
}
|
34
34
|
}
|