@stemy/ngx-utils 19.9.32 → 19.9.33

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.
@@ -203,6 +203,7 @@ export interface IconMap {
203
203
  }
204
204
  export interface IconProps {
205
205
  name: string;
206
+ [key: string]: any;
206
207
  }
207
208
  export type ButtonType = "primary" | "secondary" | "transparent";
208
209
  export type ButtonSize = "normal" | "small";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.9.32",
3
+ "version": "19.9.33",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",
@@ -16,6 +16,9 @@
16
16
  "@angular/platform-browser-dynamic": "^19.2.22",
17
17
  "@angular/platform-server": "^19.2.22",
18
18
  "element-resize-detector": "^1.2.4",
19
+ "hammerjs": "^2.0.8",
20
+ "core-js": "^3.49.0",
21
+ "socket.io-client": "^4.8.3",
19
22
  "rxjs": "^7.8.2",
20
23
  "luxon": "^3.7.2",
21
24
  "invokable": "^1.0.3",
package/ng.mjs DELETED
@@ -1,5 +0,0 @@
1
- import { register } from "node:module";
2
- import { pathToFileURL } from "node:url";
3
-
4
- register("ts-node/esm", pathToFileURL("./"));
5
- import "@angular/cli/bin/ng.js";