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 CHANGED
@@ -1,4 +1,4 @@
1
- import { signal } from "@angular/core";
1
+ import { signal } from "./../../@angular/core";
2
2
  import { Screen } from './../Tools/Screen.class';
3
3
 
4
4
  export const breakpoint_signal = signal<'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'>(Screen?.BREAKPOINT || 'xs');
@@ -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
 
package/Tools/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Guid } from "guid-typescript";
2
- import { signal } from "@angular/core";
2
+ import { signal } from "./../../@angular/core";
3
3
  const reference_signal = signal<any>({});
4
4
 
5
5
  export const Tools = {
@@ -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.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
  }