@base-framework/base 3.0.472 → 3.0.474

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.
@@ -66,6 +66,14 @@ export class DataTracker {
66
66
  * @returns {*}
67
67
  */
68
68
  static get(obj: object, type?: string): any;
69
+ /**
70
+ * This will check if an object has a specific type.
71
+ *
72
+ * @param {object} obj
73
+ * @param {string} type
74
+ * @returns {boolean}
75
+ */
76
+ static has(obj: object, type: string): boolean;
69
77
  /**
70
78
  * This will get the tracker or create a new tracker
71
79
  * if no tracker is set.
@@ -0,0 +1,2 @@
1
+ export function animateIn(ele: object, animationClass: string, parent: object): void;
2
+ export function animateOut(ele: object, animationClass: string, parent: object): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.472",
3
+ "version": "3.0.474",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",